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
Which is the memory area not included in C program? give the reason
Why can arithmetic operations not be performed on void pointers?
What is meant by operator precedence?
Are the expressions * ptr ++ and ++ * ptr same?
What is the general form of function in c?
Does c have class?
Differentiate Source Codes from Object Codes
Can we declare a function inside a function in c?
What is the use of getchar() function?
Explain the term printf() and scanf() used in c language?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
code for find determinent of amatrix
What are different types of pointers?
Explain what is a const pointer?
Does c have enums?