what is the value of b
if a=5;
b=++a + ++a
Answer Posted / nitin jatpuriya
14
| Is This Answer Correct ? | 15 Yes | 22 No |
Post New Answer View All Answers
Why should I use standard library functions instead of writing my own?
Write a program on swapping (100, 50)
write a program to create a sparse matrix using dynamic memory allocation.
What is the purpose of 'register' keyword?
Is it better to use malloc() or calloc()?
What is meant by realloc()?
What is atoi and atof in c?
What are the types of pointers?
What is the role of && operator in a program code?
Why calloc is better than malloc?
Can a program have two main functions?
What is your stream meaning?
What is #define used for in c?
What is a global variable in c?
#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); }