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
In c language can we compile a program without main() function?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is the modulus operator?
Describe the order of precedence with regards to operators in C.
can anyone suggest some site name..where i can get some good data structure puzzles???
What is const keyword in c?
What is #include called?
What is sizeof c?
What is a file descriptor in c?
How do I read the arrow keys? What about function keys?
What is meant by int main ()?
Why is it usually a bad idea to use gets()? Suggest a workaround.
about c language
how to create duplicate link list using C???
What is #error and use of it?