C Programming
Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);}

b = 3, c = 6
a = 4, c = 6
a = 3, c = 8
a = 4, c = 8
b = 4, c = 6

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP