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 calloc in c?
What is pass by reference in c?
Is there a way to compare two structure variables?
Differentiate fundamental data types and derived data types in C.
What is variables in c?
What does 3 periods mean in texting?
What is the purpose of sprintf?
In a switch statement, explain what will happen if a break statement is omitted?
What are the types of bitwise operator?
Explain goto?
What is the difference between declaring a variable and defining a variable?
What is bss in c?
What functions are in conio h?
Explain how can you be sure that a program follows the ansi c standard?
Difference between exit() and _exit() function?