Home
We can find the size of a variable (or) data type using the size of operator.
int main()
{
char c;
printf("\n Size Of C=%d",sizeof(c));
printf("\n sizeof(3)=%d",sizeof(3));
return 0;
}
output:
1
4
Next