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
What are nested functions in c?
What will be your course of action for a push operation?
What is pointer to pointer in c with example?
Can you please compare array with pointer?
How do you write a program which produces its own source code as output?
Explain what is the difference between a free-standing and a hosted environment?
Explain what is wrong with this statement? Myname = ?robin?;
Explain what are header files and explain what are its uses in c programming?
What header files do I need in order to define the standard library functions I use?
What is linear search?
What are the different types of pointers used in c language?
What is huge pointer in c?
Explain about block scope in c?
What is a node in c?
Tell me is null always defined as 0(zero)?