Advertisement

Program to find the size of variable using SIZEOF ?

 Program to find the size of variable using SIZEOF

#include<stdio.h>
#inlcude<conio.h>
void main()
{  int a,var_size;
    clrscr();
    var_size=sizeof(a);;
    printf("Size of variable is %d",var_size);  
    getch();
}
Redmi Note 10T

Post a Comment

0 Comments