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 is the use of gets and puts?
How can I do peek and poke in c?
What language is windows 1.0 written?
In C language what is a 'dangling pointer'?
What does c mean in standard form?
What is getch () for?
What is meant by recursion?
Does * p ++ increment p or what it points to?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How do you sort filenames in a directory?
Which of these functions is safer to use : fgets(), gets()? Why?
What is hash table in c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
In c programming language, how many parameters can be passed to a function ?