What is c++ used for in games?
No Answer is Posted For this Question
Be the First to Post Answer
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Does a derived class inherit or doesn't inherit?
How can a called function determine the number of arguments that have been passed to it?
What are the three forms of cin.get() and what are their differences?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
Why do we use the using declaration?
What is the use of structure in c++?
Is map ordered c++?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What are friend functions?
Does dev c++ support c++ 11?
How are virtual functions implemented in c++?