main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}

Answer Posted / sunil5a2

4 5 5

printf excutes form lefthand side onwords..

Is This Answer Correct ?    0 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is javascript written in c?

571


What is the best organizational structure?

637


Can you pass an entire structure to functions?

688


What is #include cctype?

572


What is the difference between procedural and functional programming?

512






Is main is a keyword in c?

602


what is the diffrenet bettwen HTTP and internet protocol

1383


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5191


Explain what is #line used for?

603


explain what are actual arguments?

630


What is variable initialization and why is it important?

612


How can I open files mentioned on the command line, and parse option flags?

585


Why do we use int main instead of void main in c?

611


How can I make sure that my program is the only one accessing a file?

674


How will you find a duplicate number in a array without negating the nos ?

1637