# and ## C Pre Processor Operators

Source code for this Tutorial


#include <stdio.h>
#include <stdlib.h>

#define NAME(s) #s
#define CONCAT(a,b) a ## b

int main()
{

   // printf(NAME(anil shetty));

   int xy = 25;
   printf("%d",CONCAT(x,y));

    return 0;
}