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

7 3
8 3
None of these
3 8
3 7

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of macros
Takes care of conditional compilation
Acts before compilation
Takes care of include files
All of these

ANSWER DOWNLOAD EXAMIANS APP