What character terminates all character array strings
a)
b) .
c) END
What is a Default constructor?
What are the types of container classes?
Explain terminate() and unexpected() function?
What is implicit conversion/coercion in c++?
How a new element can be added or pushed in a stack?
What is pointer -to-members in C++? Give their syntax?
What is #include cmath?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
what is the use of void main() in C++ language?
What are the basics concepts of OOPS?
What is using namespace std in cpp?
What is a constructor in c++ with example?