What is the difference between Stack and Queue in C++?
No Answer is Posted For this Question
Be the First to Post Answer
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
When would you use a pointer? A reference?
What is Boyce Codd Normal form?
Briefly explain various access specifiers in C++.
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
What Is A Conversion Constructor C++ ?
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?
Can we call a virtual function from a constructor?
Write a C++ Program to Find Sum and Average of n numbers using for loop.
What is a virtual base class?
What does malloc return in C and C++?
What is a memory leak in C++?