explain defference between structure and class with example
Answers were Sorted based on User's Feedback
Answer / maheshkumar eaga
In structure By default data members are public
In class By default data members are private
| Is This Answer Correct ? | 3 Yes | 0 No |
The structure, data type available in C is defined as Class in C plus plus. Where the data member variables in structure are accessible by all functions, methods. In Class the data variables and methods are encapsulated in one class with explicit accessible feature as public or private to protect the data. the data can also be protected with protect feature which is not available in structure data type. the only difference is data protection.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is polymorphism and its types?
What is the concept of object oriented program?
What does I oop mean?
What is difference between pop and oop?
what is main difference between object oriented object base
Why is polymorphism used?
Can we call a base class method without creating instance?
What is inheritance and how many types of inheritance?
why reinterpret cast is considered dangerous?
What is the renewal class?
What is pure oop?
What is difference between class and object with example?