C | Macro & Preprocessor | Question 9

Last Updated :
Discuss
Comments
Output? C
#include<stdio.h> 
#define f(g,g2) g##g2 
int main() 
{ 
   int var12 = 100; 
   printf("%d", f(var,12)); 
   return 0; 
}
100
Compiler Error
0
1
Tags:
Share your thoughts in the comments