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
What is main return c?
What does %2f mean in c?
What are all different types of pointers in c?
Explain 'far' and 'near' pointers in c.
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is difference between arrays and pointers?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Is linux written in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is a void pointer in c?
What is an auto variable in c?
What is sizeof array in c?
Is the exit() function same as the return statement? Explain.
Why cant I open a file by its explicit path?