diff between pointer and reference in c++?
Answer / ravi.g
pointers have valid memory but reference does not have
memory
It means pointers points to some address(memory)
Reference does not points to any address(memory)
| Is This Answer Correct ? | 2 Yes | 0 No |
Describe delete operator?
What is ctime c++?
Explain the differences between list x; & list x();.
What is a constant? Explain with an example.
Should I learn c or c++ or c#?
How can a called function determine the number of arguments that have been passed to it?
What is insertion sorting?
Why the usage of pointers in C++ is not recommended ?
what is static function
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
What compiler was used?
What is polymorphism in c++? Explain with an example?