How are Structure passing and returning implemented by the complier?
What the advantages of using Unions?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is NULL pointer?
What are pointers?
Question on Copy constructor.
What is the difference between member functions and static member functions?
What are "pure virtual" functions?
What is the difference between malloc, calloc and realloc?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What does malloc return in C and C++?
Difference between function overloading and function overriding.
What are pass by value and pass by reference?what is the disadvantage of pass by value?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
What is the 4 difference between delete[] and delete?