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 ? | 34 Yes | 30 No |
Post New Answer View All Answers
Explain what is the heap?
Can we change the value of #define in c?
The statement, int(*x[]) () what does in indicate?
Why do we use & in c?
List some applications of c programming language?
What is the purpose of ftell?
What is c programing language?
Differentiate fundamental data types and derived data types in C.
Write a program to generate the Fibinocci Series
What is the difference between void main and main in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What are the functions to open and close the file in c language?
What is function what are the types of function?
write a program to generate address labels using structures?
Explain what is the purpose of "extern" keyword in a function declaration?