What is polymorphism & list its types in c++?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
Are vectors passed by reference c++?
what does the following statement mean? int (*a)[4]
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Where are setjmp and longjmp used in c++?
Carry out conversion of one object of user-defined type to another?
What happens when the extern "c" char func (char*,waste) executes?
What is a pdb file?
Can you sort a set c++?
Difference between pointer to constant vs. Pointer constant
What is abstraction in c++ with example?
What are the weaknesses of C++?