What is the C-style character string?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of C++ programming compared to C programming?
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"?
How does list r; differs from list r();?
What are the uses of static class data?
What is struct c++?
What is lambda expression c++?
Write about the local class and mention its use?
How can you link a c++ program to c functions?
WHO DEVELOPED C++?
Describe public access specifiers?
Write a Program for find and replace a character in a string.
What is class invariant?