C Programming
Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);}

None of these
3 8
3 7
8 3
7 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP