Interview Question 3536
Created by admin on Sat, 17/11/2012 - 12:22
Explanation:
Since the #define replaces the string int by the macro char .
Question:
#defineint char main() {
int i=65;
printf("sizeof(i)=%d",sizeof(i));
}
Language:
Answer:
sizeof(i)=1