#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / mayank kumar
i=5
j=11
| Is This Answer Correct ? | 22 Yes | 10 No |
Post New Answer View All Answers
Define VARIABLE?
Why is c fast?
Give me the code of in-order recursive and non-recursive.
Is null always equal to 0(zero)?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is oops c?
Explain how can a program be made to print the name of a source file where an error occurs?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is the meaning of typedef struct in c?
i want to know the procedure of qualcomm for getting a job through offcampus
What is selection sort in c?
What are 'near' and 'far' pointers?
Difference between Function to pointer and pointer to function
Why is c known as a mother language?
Explain what are the different file extensions involved when programming in c?