what is the value of b
if a=5;
b=++a + ++a
Answer Posted / pravesh
a=5
b=++a(6) + ++a(7)
b=13+1 when last addition is performed.
so, b=14
| Is This Answer Correct ? | 1 Yes | 18 No |
Post New Answer View All Answers
When should I declare a function?
Implement bit Array in C.
What are the types of c language?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is c system32 taskhostw exe?
What does. int *x[](); means ?
What is the translation phases used in c language?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is #error and use of it?
Can a local variable be volatile in c?
What is the use of ?: Operator?
Describe the header file and its usage in c programming?
Can you subtract pointers from each other? Why would you?
Should I learn data structures in c or python?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?