Are strings immutable in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pointer how and when is it used?
What is pair 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"?
What is virtual methods?
What is null pointer and void pointer?
What is static function? Explain with an example
Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program
Difference between struct and class in terms of access modifier.
What do you mean by “this” pointer?
What is function overloading in C++?
Explain calling an object's member function(declared virtual)from its constructor?
how to find the maximum of 10 numbers ?