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 #include iomanip?
What is the benefit of c++?
What do you mean by global variables?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
What is a protocol class?
When we use Abstract Class and when we use Interface?where we will implement in real time?
Define a constructor - what it is and how it might be called (2 methods)?
what is oops and list its features in c++?
Will a catch statement catch a derived exception if it is looking for the base class?
How do you flush std cout?
In the derived class, which data member of the base class are visible?
What is a class template?