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