STL (140)
OOPS (873)
C++ General (2409) When one must use recursion function? Mention what happens when recursion functions are declared inline?
1193I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
1134
What is the use of volatile variable?
How do we balance an AVL Tree in C++?
Who created stl?
What is implicit pointer in c++?
What is the purpose of ios::basefield in the following statement?
Is oop better than procedural?
What is an adaptor class or wrapper class in c++?
What is the main purpose of c++?
Explain Memory Allocation in C/C++ ?
What is the difference between #import and #include?
What is static class data?
What happens if a pointer is deleted twice?
What is std :: flush?
What is new keyword in oops?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.