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
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
When should a far pointer be used?
How can I change their mode to binary?
code for quick sort?
What are the disadvantages of external storage class?
Explain #pragma statements.
Are there constructors in c?
Why do we use namespace feature?
What is the difference between array_name and &array_name?
What is a #include preprocessor?
What does *p++ do? What does it point to?
Can a pointer be static?
What is difference between arrays and pointers?
What is array in c with example?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above