STL (140)
OOPS (873)
C++ General (2409)
In the derived class, which data member of the base class are visible?
Can I learn c++ as my first language?
What is the advantage of c++ over c?
What is the renewal class?
How do you traverse a btree in backward in-order?
Why we use #include iostream in c++?
What is difference between data abstraction and encapsulation?
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What is the use of lambda in c++?
What is Boyce Codd Normal form?
What is constant in c++ with example?
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.
What is set in c++?
How can a struct in c++ differs from a struct in c?