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
What is %d called in c?
Explain how do you determine a file’s attributes?
Where in memory are my variables stored?
#include
Is multithreading possible in c?
What does %c do in c?
What is pointer to pointer in c?
Can we change the value of static variable in c?
what is the difference between class and unio?
What is array of structure in c programming?
Explain how can you tell whether two strings are the same?
Define and explain about ! Operator?
When should the const modifier be used?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Why is %d used in c?