What will be the output of
x++ + ++x?
Answer Posted / pardeep
answer illl always be 4
value of x ill be 2+2
it willincrement only in 2nd case th ++x
| Is This Answer Correct ? | 4 Yes | 13 No |
Post New Answer View All Answers
How does sizeof know array size?
What is wild pointer in c?
What is calloc()?
What is pointers in c?
Why do we use namespace feature?
Is anything faster than c?
Can I initialize unions?
Differentiate between Macro and ordinary definition.
How can I make sure that my program is the only one accessing a file?
What are the main characteristics of c language describe the structure of ac program?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Explain modulus operator. What are the restrictions of a modulus operator?
What is indirection?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is the use of printf() and scanf() functions?