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
What is pointer & why it is used?
How main function is called in c?
What is an auto keyword in c?
What are void pointers in c?
how we can make 3d venturing graphics on outer interface
code for find determinent of amatrix
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is the difference between exit() and _exit() function in c?
What is methods in c?
Why does notstrcat(string, "!");Work?
What are loops c?
how do you programme Carrier Sense Multiple Access
What is difference between union All statement and Union?
Explain what are reserved words?