What is ios flag in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is c++ stringstream?
What is a hash function 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"?
Is java as fast as c++?
Specify different types of decision control statements?
Describe private, protected and public – the differences and give examples.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain stack & heap objects?
Is facebook written in c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What are the debugging methods you use when came across a problem?
List out some of the OODBMS available?