Hai,
I have a doubt.Please do look at the snippet below and answer my question.
The output of this program is 100.
What is the function of # here?Please do clear my doubt.Thanks in advance
I have a doubt.Please do look at the snippet below and answer my question.
Code:
#include<stdio.h>
#include<conio.h>
#define f(g,g2) g##g2
main()
{
int var12=100;
clrscr();
printf("%d",f(var,12));
getch();
}
What is the function of # here?Please do clear my doubt.Thanks in advance
Comment