Q.

What will be output if you will compile and execute the following c code? #include<stdio.h>
#define max 5;
int main(){
int i=0;
i=max++;
printf("%d",i++); return 0;
}

A. 5
B. 6
C. 7
D. 0
Answer» D. 0
1.7k
0
Do you find this helpful?
1

Discussion

No comments yet

Related MCQs