Define a constructor - what it is and how it might be called (2 methods)?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the properties and principles of oop.
How much do c++ programmers make?
How do you declare A pointer to a function which receives nothing and returns nothing
Which of the following is evaluated first: a) && b) || c) !
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
what are Access specifiers in C++ class? What are the types?
Difference between inline functions and macros?
What is a vector c++?
What is auto used for in c++?
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
Why do we use iterators?
What is the extraction operator and what does it do?