Saurabh Srivastava
8 years ago

What will be the output of the program
#include<stdio.h>
int main()
{
enum value{VAL1=0, VAL2, VAL3, VAL4, VAL5} var;
printf("%dn", sizeof(var));
return 0;
}

Solution (By Examveda Team)

4

This Question Belongs to User Ask Question >> Miscellaneous

Join The Discussion

Related User Ask Questions