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
Process by which one bit pattern in to another by bit wise operation is?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is the general form of #line preprocessor?
What is time complexity c?
What is static and auto variables in c?
What is difference between union All statement and Union?
What is the purpose of main( ) in c language?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Why c is faster than c++?
What is a loop?
what is the syallabus of computer science students in group- 1?
what do you mean by inline function in C?
How can I get back to the interactive keyboard if stdin is redirected?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Where are the auto variables stored?