int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / amaresh chandra das
Ans:1,2
because arguments of functions stored in stack in FIFO order
So Var a enters 1st so it will out (popped)1st too as it's
STACK's property.
| Is This Answer Correct ? | 10 Yes | 7 No |
Post New Answer View All Answers
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is the use of #include in c?
Explain b+ tree?
Can true be a variable name in c?
Explain how do you print an address?
Is null valid for pointers to functions?
What is bubble sort in c?
What oops means?
Write a code to generate divisors of an integer?
What is the difference between variable declaration and variable definition in c?
What is hungarian notation? Is it worthwhile?
Explain the difference between getch() and getche() in c?
Do you know null pointer?
If I have a char * variable pointing to the name of a function ..
Is c a great language, or what?