What are "pure virtual" functions?
No Answer is Posted For this Question
Be the First to Post Answer
Explain function prototypes in C++.
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
Explain the difference between method overriding and method overloading in C++?
What is the difference between realloc() and free() in C++?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
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?
Explain the difference between C and C++.
How does stack look in function calls? Write a recursive function call, how will the stack look like?
Write a syntax and purpose of switch statement.
What is a virtual function in C++?
Is deconstructor overloading possible? If yes then explain and if no Then why?
Write a program to generate the Fibonocci Series in C++.