May 22, 2023
program to use size of operators in c language
#include<stdio.h>
int 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));
printf("size of an integer constant=%u\n",sizeof(45));
return 0;
}
output
size of int =4
size of float=4
size of var=4
size of an integer constant=4
by : Ajaj Khan
Quick Summary:
In this program size of intType floatType and varType is fixed