What is abstract class in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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
How to avoid changing constant values?
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What are move semantics?
Explain the concept of dynamic allocation of memory?
What is the use of lambda in c++?
What are the conditions that have to be met for a condition to be an invariant of the class?
which is the easy way to divide any integer by 2?
what is data encapsulation in C++?
What is the difference between a pointer and a link in c ++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
which operator is used for performing an exponential operation a) > b) ^ c) none