STL (140)
OOPS (873)
C++ General (2409) what is the difference between overloading & overriding? give example.
How can you say that a template is better than a base class?
What do you mean by a template?
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Why do we use constructor?
What is flag in computer?
What is copy constructor? Can we make copy constructor private in c++?
How to allocate memory dynamically for a reference?
What are inline functions? What is the syntax for defining an inline function?
Can main method override?
How do I tokenize a string in c++?
How to declare a pointer to an array of integers?
Why is main function important?
Is c better than c++?