Q. What is the output of this program?
Code:#include <stdio.h>
#define int char
main()
{
int i=50;
printf ("sizeof (i) =%d", sizeof (i));
}
β
Correct Answer: (A)
1
#include <stdio.h>
#define int char
main()
{
int i=50;
printf ("sizeof (i) =%d", sizeof (i));
}
You must be Logged in to update hint/solution