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
Write a progarm to find the length of string using switch case?
Write a program to check armstrong number in c?
What is the correct declaration of main?
Write a C program in Fibonacci series.
What are the salient features of c languages?
How do I read the arrow keys? What about function keys?
Is it possible to initialize a variable at the time it was declared?
Explain modulus operator. What are the restrictions of a modulus operator?
What is difference between && and & in c?
What are nested functions in c?
What is an operator?
In c language can we compile a program without main() function?
What is a void pointer in c?
How does struct work in c?
What are formal parameters?