Data type in c language
it is a type of data which is used in the programe
there are two type of data type
1. basic data type
1.intteger (int )
2.floating (float)
3.character(char)
2.derived data type
1.pointer
2.array
3.struture
4.union
#include <stdio.h>
int main()
{
printf("%lu",sizeof(int));
return 0;
}
you can get the value of data type.
Comments
Post a Comment