If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
The above line of the code gets executed using the C++ program, the output will give 10 as value of b at the prompt. It will process the b+=(5%7*2), as b values is already given as 6 then it will add, to the assigned value to the result got from the expression. if properly syntaxes and executed the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
How compiler selects(internally) required overridden function in inheritance?
2 Answers CSC, Infinite Computer Solutions,
Name an advantage of linked list over array?
What is difference between class and object with example?
What is multiple inheritance? Give Example
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
How many human genes are polymorphic?
What is encapsulation?
Name an advantage of array over linked list?
24 Answers GML, IBM, Software Solutions,
What is polymorphism and example?
What is the use of fflush(stdin) in c++?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
what is function over loading?