STL (140)
OOPS (873)
C++ General (2409) write a c++ code to overload + and - for a stack class such that + provides push and - provides pop operation
1 6138
What is the difference between a mixin and inheritance?
What does flush do c++?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
Comment on c++ standard exceptions?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is the use of bit fields in structure declaration?
What are default parameters? How are they evaluated in c++ function?
How can you differentiate between inheritance and implementation in c++?
How to stop class inheritance in C++ with condition that object creation should be allowed
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 maximum number of concurrent threads that the InnoDB plug-in can create
Why is c++ still popular?
Write about the members that a derived class can add?
What are the three main types of variables?
Out of fgets() and gets() which function is safe to use and why?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.