google407ec42f1ae5ff0e.html Program to understand the size of operator using c language
top of page

Program to understand the size of operator using c language

#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();

}

17 views0 comments

Recent Posts

See All
bottom of page