Can notepad ++ run c++?
No Answer is Posted For this Question
Be the First to Post Answer
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 is the difference between inline functions and macros?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
What is the latest version on c++?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
sizeof - is it a function or operator?
Why c++ is not a pure oop language?
What is null pointer and void pointer and what is their use?
What is the exit function in c++?
Why do we need function?
What are shallow and deep copies?
What is the difference between prefix and postfix versions of operator++()?