What is the significance of 'sizeof' operator in C?
size of operater - is used to print the size in byte of your data types such as(int, char, float, double etc.) depend upon your different types of data types. and compilersEXAMPLES#include#includeint main(){int i;char ch;float f;double d;long double l;printf("\nsize of integer is %d byte",sizeof(i));printf("\nsize of character is %d byte",sizeof(ch));printf("\nsize of float is %d byte",sizeof(f));printf("\nsize of double is %d byte",sizeof(d));printf("\nsize of long is %d byte",sizeof(l));getch();}Made by (ARUN KUMAR RAI).