what is the output?
#define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t)
float gfloat;
main()
{
float a=1.12,b=3.14;
fun (a,b,float);
printf("na=%4.2f,b=%4.2f",a,b);
}
A)Error in Defining Macro
B)a=1.12,b=3.14
C)a=3.14,b=1.12
D)None of the Above
Answer Posted / deepa
option c
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is table lookup in c?
What is cohesion in c?
Did c have any year 2000 problems?
What is the difference between āgā and āgā in C?
Explain how can type-insensitive macros be created?
Can you please explain the scope of static variables?
When should we use pointers in a c program?
I have a varargs function which accepts a float parameter?
What is a union?
Is sizeof a keyword in c?
Where are some collections of useful code fragments and examples?
What are reserved words?
Explain the use of function toupper() with and example code?
What is the use of typedef in structure in c?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)