#define f(g,g2) g##g2
main()
{
int var12=100;
printf("%d",f(var,12));
}
Answer:
100
Explanation:
##
is the preprocessor "command" for concatenating what comes before and after so becomes var12.Blog Author: Vijay Kumar
Go to: Java Aptitude
No comments:
Post a Comment