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

g##g2
Syntax error
10012
Runtime error
100

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP