what is the value of b
if a=5;
b=++a + ++a
Answer Posted / prasoon
b=++a(6) + ++a(7)
=13
| Is This Answer Correct ? | 9 Yes | 8 No |
Post New Answer View All Answers
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Can we use any name in place of argv and argc as command line arguments?
How to get string length of given string in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
When is a void pointer used?
Where define directive used?
What is the difference between void main and main in c?
pierrot's divisor program using c or c++ code
State the difference between realloc and free.
Can include files be nested?
What is maximum size of array in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is a pointer on a pointer in c programming language?
Explain what is the benefit of using enum to declare a constant?
What do you mean by keywords in c?