What does std mean in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What's the hardest coding language?
What is dangling pointers?and what is memory leak?
What is extern c++?
What is the use of main function in c++?
What are the 4 types of library?
How can we access protected and private members of a class?
What things would you remember while making an interface?
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
Can non graphic characters be used and processed in C++?
Explain storage qualifiers in c++.
If a function doesn’t return a value, how do you declare the function?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass