C Programming
What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);}

5
Compiler Error
0
6
7

ANSWER DOWNLOAD EXAMIANS APP