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

Answer Posted / kaushik

13

i=i++--->6

++6=7

7+6=13

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between int main and void main?

575


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

1122


What is indirection?

653


is it possible to create your own header files?

642


Explain the difference between null pointer and void pointer.

673






a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

645


How the c program is executed?

632


What is a stream?

651


What tq means in chat?

582


What are the different types of endless loops?

624


What are global variables?

648


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

635


Why are all header files not declared in every c program?

601


What is the difference between pure virtual function and virtual function?

652


Why should I prototype a function?

642