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
Explain the properties of union. What is the size of a union variable
how to introdu5ce my self in serco
what are # pragma staments?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the general form of #line preprocessor?
What is the value of uninitialized variable in c?
Explain what is the difference between functions getch() and getche()?
What does the c preprocessor do?
What is meant by keywords in c?
what value is returned to operating system after program execution?
Do you know null pointer?
When should the volatile modifier be used?
What is the difference between declaring a variable and defining a variable?
What is the use of putchar function?
What is the advantage of an array over individual variables?