what isthe difference between c structure and c++ class
Answers were Sorted based on User's Feedback
Answer / harshad khedekar
c does not allow struct data type to be treated like built-in datatype also it does not supports data hiding concept.in c++ instead of struct we have class which overcomes all the above limitations.
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / jeremiah
The default scope of a C struct is public, whearas the
default scope of a C++ class is private.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / amarnath
Construtor is not in c strut and present in c++ class
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / a.sivasakthi
c structure are only define the data and data types
C++ class are define the data and solve the function the
both process are solved to the c++ class
Is This Answer Correct ? | 0 Yes | 4 No |
Program to open a file with First argument
Tell me the scenario,Where we can use interfaces or Abstract class.And What is the difference between interfaces and abstract class?
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
What is object and class in oops?
What is polymorphism give a real life example?
What is the purpose of enum?
Polymorphism with an example?
why reinterpret cast is considered dangerous?
Why is destructor used?
What is constructor in oop?
what is pointers
What is Iteration Hierarchy? What is what is Object behavioral concept?