what is the value of b
if a=5;
b=++a + ++a
Answer Posted / madhu cherukuri
a=5
b=++a +++a;
ANS:14
in this case the data will be storing in CPU register so the
result is 14 only.
volatile int a=5;
b=++a + ++a;
ANS:13
the data will be stored in directly memory
| Is This Answer Correct ? | 33 Yes | 15 No |
Post New Answer View All Answers
What is calloc in c?
What is the total generic pointer type?
What is the condition that is applied with ?: Operator?
Explain what is wrong in this statement?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is the difference between char array and char pointer?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is struct node in c?
What is array of structure in c?
What is fflush() function?
Explain is it valid to address one element beyond the end of an array?
What is nested structure in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What functions are used for dynamic memory allocation in c language?