First Commit

This commit is contained in:
2021-04-25 15:28:50 +05:30
commit c3dbda79c4
22 changed files with 138 additions and 0 deletions

8
DataTypeSize.c Normal file
View File

@@ -0,0 +1,8 @@
// 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));
}