what is the value of b
if a=5;
b=++a + ++a
Answer Posted / rd
its 13
initial value: 5
++a : 6
again (++a): 7
so it is (7+6) 13...and there shouldn't be any doubt about it.
| Is This Answer Correct ? | 14 Yes | 14 No |
Post New Answer View All Answers
Why malloc is faster than calloc?
What are identifiers c?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What are the types of operators in c?
What is structure padding and packing in c?
What are static variables in c?
Explain what is #line used for?
What is difference between arrays and pointers?
Tell us something about keyword 'auto'.
What are the advantage of c language?
given post order,in order construct the corresponding binary tree
#include
how to build a exercise findig min number of e heap with list imlemented?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Can you add pointers together? Why would you?