What is the basic of c++?
No Answer is Posted For this Question
Be the First to Post Answer
describe private access specifiers?
Can you pass an array to a function in c++?
Give an example of run-time polymorphism/virtual functions.
State the difference between delete and delete[].
What is size of Empty Class?
Why is c++ still best?
Write a C++ Program to Generate Random Numbers between 0 and 100
What is #include ctype h in c++?
How the virtual functions maintain the call up?
give me an example for testing a program showing the test path .show how the test is important and complex.
Why do we use pointers in c++?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4