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