what is the value of b
if a=5;
b=++a + ++a

Answer Posted / guru1985

b=++a(6) + ++a(7)
b=6+7
=13

Is This Answer Correct ?    83 Yes 57 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #include called?

575


Explain modulus operator. What are the restrictions of a modulus operator?

604


Is c easy to learn?

564


c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

619


How would you use the functions fseek(), freed(), fwrite() and ftell()?

709






Why is main function so important?

619


Explain what is the difference between a free-standing and a hosted environment?

639


How does #define work?

654


How can variables be characterized?

1654


Differentiate between new and malloc(), delete and free() ?

679


Which is better between malloc and calloc?

673


Here is a neat trick for checking whether two strings are equal

569


How main function is called in c?

633


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2338


What is the difference between declaring a variable and defining a variable?

726