Program to understand the size of operator using c language
- Yatendra Awana
- Jul 21, 2021
- 1 min read
#include<stdio.h>
void main()
{
int var;
printf("Size of int=%u\n",sizeof(int));
printf("Size of float=%u\n",sizeof(float));
printf("Size of var=%u\n",sizeof(var));
getch();
}
Comments