what is the value of b
if a=5;
b=++a + ++a
Answer Posted / shashikanth
if a=5;
b=++a+++a;
initial value a=5
first prefix 6
second prefix 7
final value b=7+7
b=14
ans 14
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Where does the name "C" come from, anyway?
List a few unconditional control statement in c.
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Describe the difference between = and == symbols in c programming?
How can I determine whether a machines byte order is big-endian or little-endian?
How will you find a duplicate number in a array without negating the nos ?
What is enumerated data type in c?
What are the differences between Structures and Arrays?
can anyone please tell about the nested interrupts?
What is huge pointer in c?
Why we not create function inside function.
Explain that why C is procedural?
What does c in a circle mean?
What is new line escape sequence?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.