what is the value of b
if a=5;
b=++a + ++a
Answer Posted / ashfak yeafi
The answer is 14.
The increment operator has a higher priority than the arithmetic operator.
So the equation will be,
b=7+7=14
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
How old is c programming language?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What are the functions to open and close file in c language?
Why is c called c not d or e?
Why c is procedure oriented?
write a program for the normal snake games find in most of the mobiles.
What is null in c?
What is a lookup table in c?
Explain how can I remove the trailing spaces from a string?
What are actual arguments?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the difference between functions getch() and getche()?
What is the g value paradox?
Can we assign string to char pointer?