#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / lebin
value of i is 5
value of j is 12
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is c++ based on c?
Why do we need a structure?
What is n in c?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Can a file other than a .h file be included with #include?
What is restrict keyword in c?
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
What is scope rule of function in c?
What are predefined functions in c?
i want to know the procedure of qualcomm for getting a job through offcampus
Where in memory are my variables stored?
What is storage class?
Why is void main used?
What is structure in c explain with example?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....