In this lecture, I will introduce you to C data types. I will talk about different primitive data types in C.
Data type determines the following:
• Range of the data
• Type of the data stored
• Number of bytes it occupies in memory
C supports following data types:
• int – occupies 4 bytes of memory in 32-bit compiler
• float – occupies 4 byes of memory
• double – occupies 8 bytes of memory
• char – occupies 1 byte of memory
Consider subscribing to this channel to get latest updates on new videos and online C programming course.
Interested in learning C programming language? Visit my comprehensive C course - https://www.aptuts.com/c-programming
#dataTypesC #cDataTypes #aptuts