void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / jignesh patel
i++=5
++i=6
so i++ + ++i = 5+6=11
| Is This Answer Correct ? | 6 Yes | 26 No |
Post New Answer View All Answers
Explain what is the use of a semicolon (;) at the end of every program statement?
Explain function?
In C, What is the #line used for?
Does free set pointer to null?
What language is windows 1.0 written?
Can a variable be both const and volatile?
What is auto keyword in c?
How does placing some code lines between the comment symbol help in debugging the code?
Explain the advantages of using macro in c language?
Do variables need to be initialized?
write a program to display all prime numbers
Define VARIABLE?
largest Of three Number using without if condition?
how do you execute a c program in unix.
Why can’t we compare structures?