What is a character in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is different in C++, compare with unix?
What is abstraction in c++?
Can non-public members of another instance of the class be retrieved by the method of the same class?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
Why do we use string 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
What is static class data?
Describe new operator?
What is the outcome of cout< a) 16 b) 17 c) 16.5
What is the basic structure of a c++ program?
To which numbering system can the binary number 1101100100111100 be easily converted to?