What will be the output of
x++ + ++x?
Answer Posted / srinivas
for this what is the input value of x.First of all we have
to give the input value of x.
if x = 1 then answer would be
main();
int x=1,y.
y = x++ + ++x.
printf /n'%d',y.
here y = 3
| Is This Answer Correct ? | 11 Yes | 15 No |
Post New Answer View All Answers
define string ?
What does double pointer mean in c?
When the macros gets expanded?
find out largest elemant of diagonalmatrix
Explain how can I remove the trailing spaces from a string?
Is int a keyword in c?
How can I prevent another program from modifying part of a file that I am modifying?
What are the different types of constants?
How is null defined in c?
Where can I get an ansi-compatible lint?
program for reversing a selected line word by word when multiple lines are given without using strrev
How to draw the flowchart for structure programs?
What is exit() function?
What are the advantages of union?
Write the test cases for checking a variable having value in range -10.0 to +10.0?