#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / gaurav
5
12
| Is This Answer Correct ? | 35 Yes | 14 No |
Post New Answer View All Answers
What is #line used for?
Should I learn c before c++?
Why do we use header files in c?
What is const keyword in c?
When is a “switch” statement preferable over an “if” statement?
Tell us two differences between new () and malloc ()?
Why is #define used?
Explain 'bus error'?
What is #define?
What are the different types of objects used in c?
What are the 4 types of programming language?
What's a good way to check for "close enough" floating-point equality?
Why #include is used in c language?
What is the purpose of & in scanf?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration