what is the value of b
if a=5;
b=++a + ++a
Answer Posted / guru1985
b=++a(6) + ++a(7)
b=6+7
=13
| Is This Answer Correct ? | 83 Yes | 57 No |
Post New Answer View All Answers
What is multidimensional arrays
How can a number be converted to a string?
How can I generate floating-point random numbers?
Write a program to find factorial of a number using recursive function.
How are 16- and 32-bit numbers stored?
What is sizeof return in c?
Lists the benefits of c programming language?
What is I ++ in c programming?
main() { printf("hello"); fork(); }
What is the explanation for cyclic nature of data types in c?
What type of function is main ()?
Can a variable be both const and volatile?
What is a pointer in c plus plus?
Which driver is a pure java driver
Explain what happens if you free a pointer twice?