What is one dimensional array in c++?
Define 'std'.
What do you mean by function overriding & function overloading in c++?
What is c++ code?
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
Is c++ a float?
Give 10 points of differences between C & C++.
Define namespace in c++?
Can comments be nested?
What does std mean in c++?
Does c++ have foreach?
What is the exit function in c++?
What do you mean by call by value and call by reference?