Discussion :: C Preprocessor
-
What will be output if you will compile and execute the following c code?
#include<stdio.h>
#define max 5
void main(){
int i = 0;
i = max++;
printf("%d", i++);
}
Answer : Option E
Explanation :
main.c: In function ‘main’:
main.c:5:12: error: lvalue required as increment operand
i = max++;
Be The First To Comment