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

0
6
7
5
Compiler Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

has # as the first character
need not start on a new line
comes before the first executable statement
need not start on the first column

ANSWER DOWNLOAD EXAMIANS APP