Files
C-Projects/DataTypeSize.c
2021-04-25 15:28:50 +05:30

9 lines
323 B
C

// WAP to check size of following data types: char,int,float, double.
void main() {
printf("Size of char data type : %d\n",sizeof(char));
printf("Size of int data type : %d\n",sizeof(int));
printf("Size of float data type : %d\n",sizeof(float));
printf("Size of double data type : %d\n",sizeof(double));
}