test 2
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;
}
Free Computer Programming Video Tutorials in Hindi
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;
}
Copyright © LearningLad.in . All rights reserved.