Implement a 2 dimensional array by one dimentional array
Answer / answer and question
one to one array,multi dimension array
| Is This Answer Correct ? | 3 Yes | 4 No |
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
Disadvantages of c++
What is endl?
What is a protocol class?
Explain how a pointer to function can be declared in C++?
What do you mean by delegate? Can a user retain delegates?
what is upcasting in C++?
Which programming language is best?
What are stacks?
Difference between inline functions and macros?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?