List different attributes in C++?
Answer / Amritanshu Kumar Singh
```
1. Classes
2. Objects (Instances of classes)
3. Member functions (Methods)
4. Data members (Variables within a class)
5. Access specifiers (public, private, protected)
6. Inheritance
7. Polymorphism
8. Operator Overloading
9. Exception Handlingn10. Namespacesn11. Templates
| Is This Answer Correct ? | 0 Yes | 0 No |
What does it mean to declare a member function as static?
write a C++ programming :if the no is between 32 to 50 it will be odd.
Can we declare a base-class destructor as virtual?
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
Implement stack operations with pointers with appropriate exception checks.
Are there interfaces in c++?
What are pointers used for c++?
What do you mean by pure virtual functions in C++? Give an example?
What is std namespace in c++?
Should you pass exceptions by value or by reference?
Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring