What will i and j equal after the code below is executed? Explain your answer.
After the above code executes, i will equal 6, but j will equal 5. Understanding the reason for this is fundamental to understanding how the unary increment ( ++ ) and decrement ( -- ) operators work in C++.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the c++ code?
Explain about profiling?
What is searching?
What are different types of polymorphism supported by C++
How is objective c different from c++?
What are literals in C++?
How do you differentiate between overloading the prefix and postfix increments?
What is null pointer and void pointer?
When there is a global variable and local variable with the same name, how will you access the global variable?
Do you know what is overriding?
Explain virtual class?
Explain the difference between c++ and java.