What is the error in the code below and how should it be corrected?
No Answer is Posted For this Question
Be the First to Post Answer
what are Access specifiers in C++ class? What are the types?
what is a class? Explain with an example.
Can we use struct 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"?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What sorting algorithm does c++ use?
How do you print a string on the printer?
What is the best c++ compiler for windows 10?
What is this weird colon-member (" : ") syntax in the constructor?
what is data Abstraction
What do you mean by function and operator overloading in c++?
What is the purpose of the noexcept keyword?