What is ifstream c++?
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
How the programmer of a class should decide whether to declare member function or a friend function?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
Difference between delete and free.
Under what conditions is multiple inheritance not recommended?
Why #include is used?
which of the following is not an secondary constant a) array b) real c) union
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?
What is extern c++?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
What is the difference between inline functions and macros?