#define f(g,h) g##h
main O
int i=0
int var=100
;
print f ("%d"f(var,10));}
wat would be the output??
No Answer is Posted For this Question
Be the First to Post Answer
How do you print only part of a string?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
Can include files be nested?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
Why clrscr is used after variable declaration?
who is the founder of c
19 Answers College School Exams Tests, HP,
What is the advantage of an array over individual variables?
What are the 32 keywords in c?
What is the 'named constructor idiom'?
What is a segmentation fault?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?