#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / barathi
i=2
j=9
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Where is volatile variable stored?
What is wrong in this statement?
How can you tell whether a program was compiled using c versus c++?
Which one would you prefer - a macro or a function?
What are the back slash character constants or escape sequence charactersavailable in c?
What are the advantages of c language?
What is volatile variable in c?
What is f'n in math?
application attempts to perform an operation?
What is the significance of c program algorithms?
The file stdio.h, what does it contain?
How would you rename a function in C?
What is #include called?
What are enums in c?
Why doesnt this code work?