What is the Difference between "C structure" and "C++
structure"?
Answer Posted / satsen singh
C Structure :-
1. Only variables of different data types can be declared, functions are not allowed
2. Direct access to data members is possible
3. ‘struct’ data type is not treated as built in type – use of ‘struct’ necessary to declare objects
4. Member variables cannot be initialized inside a structure
C++ Structure :-
1. In C++ structure declaration functions can also be declared
2. The members declared in a C++ structure is public by default
3. While declaring an object the keyword ‘struct’ is omitted in C++
| Is This Answer Correct ? | 26 Yes | 5 No |
Post New Answer View All Answers
Is c++ an oop?
Tell me can a pure virtual function have an implementation?
What is the use of typedef?
Differentiate between a template class and class template in c++?
How is computer programming useful in real life?
what is a class? Explain with an example.
What is the default width for ouputting a long integer using the insertion operator?
Why is c++ difficult?
What is the use of "new" operator?
What are proxy objects in c++?
What is iterator c++?
Write a recursive program to calculate factorial in c++.
What is the default access level?
What is called array?
What do you mean by storage classes?