#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
Is there a built-in function in C that can be used for sorting data?
What are the key features of C?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
hat is a pointer?
How do you write a program which produces its own source code as output?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is a null pointer in c?
Is there anything like an ifdef for typedefs?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
what is an ERP?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
which of 'arrays' or 'pointers' are faster?