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

100
Runtime error
g##g2
Syntax error
10012

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.
Makes the debugging task easier.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP