C Programming
The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));}

10012
100
Runtime error
Syntax error
g##g2

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP