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

Syntax error
10012
g##g2
Runtime error
100

ANSWER DOWNLOAD EXAMIANS APP

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15/%!");
printf("My salary was increased by 15%!");
printf("My salary was increased by 15'%'!");
printf("My salary was increased by 15%%!");

ANSWER DOWNLOAD EXAMIANS APP