What is the size of char data type in C?
How Can We Find The Size of all Data Type In C Language.
The size of char data type in C is 1 byte and value range between -128 to 127 or 0 to 255.
To get the exact type of data size or variable then you can use sizeof operator. The expression sizeof(type). It gives you the exact size of the data type.
Lets see an example of it :-
Comments
Post a Comment