int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?

Answer Posted / sateeshbabu aluri

o/p will be: 1 2 only
3 will be ommited because there is no conversion operator
in printf.

Is This Answer Correct ?    13 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #line?

607


Where are c variables stored in memory?

592


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

743


Why is %d used in c?

559


What does malloc () calloc () realloc () free () do?

556






Explain what are binary trees?

606


Where in memory are my variables stored?

633


Explain about the constants which help in debugging?

843


What are the advantage of c language?

548


What is New modifiers?

665


What is malloc and calloc?

571


how to make a scientific calculater ?

1563


Is there any demerits of using pointer?

625


How do you list a file’s date and time?

628


What is a structural principle?

636