int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / geetha
answer is 1,2
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain what is the difference between the expression '++a' and 'a++'?
What is data structure in c programming?
What is the use of ?
What is %s and %d in c?
What are the keywords in c?
Why is c platform dependent?
Why is this loop always executing once?
How can you increase the allowable number of simultaneously open files?
Is there a way to jump out of a function or functions?
What does %p mean?
Why dont c comments nest?
Where is volatile variable stored?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is the Purpose of 'extern' keyword in a function declaration?
What are the different types of objects used in c?