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

Is c procedural or functional?

592


Define circular linked list.

573


How do I convert a string to all upper or lower case?

631


What is variable in c example?

597


is it possible to create your own header files?

648






Explain setjmp()?

661


How can a program be made to print the line number where an error occurs?

654


Explain how can I manipulate strings of multibyte characters?

788


Why does notstrcat(string, "!");Work?

646


What is the best way to store flag values in a program?

583


Is exit(status) truly equivalent to returning the same status from main?

589


Can we declare variables anywhere in c?

582


How is a pointer variable declared?

596


Is that possible to add pointers to each other?

907


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

983