Determine Output:
#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}
#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}Determine Output:
#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} Correct Answer sizeof(i)=1
Since the #define replaces the string int by the macro char.