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++);}

6
0
5
Compiler Error
7

ANSWER DOWNLOAD EXAMIANS APP