#define f(g,h) g##h
main O
int i=0
int var=100
;
print f ("%d"f(var,10));}
what would be the output?
Answer Posted / ricky
It will show an error:
Undefined symbol var10 in main function
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Which programming language is best for getting job 2020?
Can 'this' pointer by used in the constructor?
Where can I get an ansi-compatible lint?
Can a pointer be static?
Can we compile a program without main() function?
What is meant by recursion?
What is the most efficient way to count the number of bits which are set in an integer?
Explain how can you restore a redirected standard stream?
Explain modulus operator.
What is calloc in c?
What is putchar() function?
write a program to create a sparse matrix using dynamic memory allocation.
Explain why can’t constant values be used to define an array’s initial size?
What is quick sort in c?
Explain how can I convert a number to a string?