P214. WAP to understand token parsing operation

 

#include<stdio.h>

#define TP(i,j) i##j

void main()

{

        int ab = 15;

        printf("%d\n",TP(a,b));

}

Comments