Data types in C

Data types specifies the type of data that a variable can store. For example a variable can store either integer, float, string etc

Data types used in C are
int, float, double, char, array, pointer, enum etc

Variable with data type declaration is
int a;
float bc1;
char b;

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.