Define 'std'.
No Answer is Posted For this Question
Be the First to Post Answer
Why can you not make a constructor as const?
How the endl and setw manipulator works?
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
What is the role of static keyword for a class member variable?
Explain the uses oof nested class?
Which is the best c++ compiler for beginners?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What is size of null class?
What is namespace std; and what is consists of?
What is the use of namespace std in C++?
Why is c++ called oops?