What is a set in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is python better than c++?

0 Answers  


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;

4 Answers   Lehman Brothers,


how can u create a doubly linked list with out using pointers?

2 Answers  


Is there any function that can skip certain number of characters present in the input stream?

0 Answers  


given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you

2 Answers  






Define a pointer to a data member of the type pointer to pointer?

0 Answers  


Why is c++ awesome?

0 Answers  


Explain overriding.

0 Answers  


Can a list of string be stored within a two dimensional array?

0 Answers  


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

0 Answers   Yahoo,


What is the Difference between "C structure" and "C++ structure"?

12 Answers  


Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?

1 Answers  


Categories