Difference between Class and Struct.
Answer Posted / jammu hari (v.v. narasimharao
Difference between class & Structure is :-
-------------------------------------------
1. class = data + functions
structure=Collection of different data
2. Class supports Re-usability. Structures are used to handle
the complex data.
3. Both are user defined data types.
4. 'struct' is a keyword which is used to declare a structure.
'class' is a keyword used to declare a class.
5. By default all the structure members are public. But in
class all the members are private.
6. Structure variable is used to access the structure
members. Object is used to access the class members.
7. Structure is less secure than the class.
8. Structure is a procedure Oriented feature. Object is a
Object Oriented Feature.
9. Both Structure & Class uses (.) dot operator to access
their members.
10. class contains 3 access specifiers But structure has
only 1 access specifier.
11. We can inherit a class. But we can't inherit structure.
12. We can declare constructors & destructors inside of a
class. But we can't declare these in Structure.
13. Structure are not suitable of Data Hiding. But classes
well suited for data hiding.
14. Structure is a valute type. Class is a reference type.
so, class data is stored in heap & structure data is
stored in stack.
15. class is an extension to the structure.
16. structures are used to handle the complex data.
class is used for reusability.
| Is This Answer Correct ? | 41 Yes | 14 No |
Post New Answer View All Answers
will u please send me the placement papers to my mail???????????????????
Why cant I open a file by its explicit path?
What is the use of a ‘ ’ character?
Explain what is operator promotion?
What is structure padding and packing in c?
What’s a signal? Explain what do I use signals for?
Write a progarm to find the length of string using switch case?
What is the explanation for the dangling pointer in c?
using only #include
What is fflush() function?
What is the difference between volatile and const volatile?
Why is c used in embedded systems?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Why do we write return 0 in c?
What is the difference between printf and scanf )?