What is size_type?
No Answer is Posted For this Question
Be the First to Post Answer
What flag means?
What do you mean by call by value and call by reference?
What are the basics of local (auto) objects?
State the difference between pre and post increment/decrement operations.
Are vectors faster than arrays?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
Do you know what are static and dynamic type checking?
What are class and object in C++?
In which memory a class gets stored(in heap /in stack)? And why??
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
How do you flush a buffer in c++?
Explain about Garbage Collector?