What is the use of string in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Do we have to use initialization list in spite of the assignment in constructors?
Please post the model question paper of hal?
What are punctuators in c++?
Can you write a function similar to printf()?
Keyword mean in declaration?
When does a 'this' pointer get created?
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;
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
Define stacks. Provide an example where they are useful.
Why pointer is used in c++?
Which is the best c++ compiler for beginners?
What is a constant? Explain with an example.