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

How to declare a variable?

562


Are the variables argc and argv are always local to main?

565


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

694


What library is sizeof in c?

557


Explain modulus operator.

588






What is a program flowchart and explain how does it help in writing a program?

661


What type of function is main ()?

579


What is the significance of c program algorithms?

674


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

556


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

637


Why main is not a keyword in c?

638


What are different types of pointers?

556


Explain why c is faster than c++?

564


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1479


What is a macro, and explain how do you use it?

621