what is the value of b
if a=5;
b=++a + ++a
Answer Posted / shashikanth
if a=5;
b=++a+++a;
initial value a=5
first prefix 6
second prefix 7
final value b=7+7
b=14
ans 14
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
If I have a char * variable pointing to the name of a function ..
Explain c preprocessor?
How can I discover how many arguments a function was actually called with?
What is hash table in c?
What are conditional operators in C?
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 does volatile do?
How to get string length of given string in c?
Tell us two differences between new () and malloc ()?
What is graph in c?
What is the general form of #line preprocessor?
write a program to concatenation the string using switch case?
What are the different types of data structures in c?
how to make a scientific calculater ?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?