-
-
-
-
What do you mean by pure virtual functions?
A pure virtual member function is a member function that the base class forces derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero. class Shape { public: virtual void draw() = 0; };
-
Function Pointers
Why function pointers are not dereferanced?
-
Constructors Programmatic
How do you pass parameters to super class ?
Empty Class Size
What is the size of an empty class?
What is a scope resolution operator?
A scope resolution operator (::), can be used to define the member functions of a class outside the class.
Pointers Datatype
What is the datatype of pointer?
Which of the following operators can not be overloaded
A) == b)++ c)?! d)
Adding user from c program to Mysql.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Ans