Archive for Difference between C structure and C++ structure?
You are browsing the archives of Difference between C structure and C++ structure?.
You are browsing the archives of Difference between C structure and C++ structure?.
Answer :
C++ places greater emphasis on type checking, compiler can diagnose every difference between C and C++.
1. structures are a way of storing many different values in variables of potentially difference types under the same name.
2. classes and structures make program modular, easier to modify make things compact.
3. useful when a lot of [...]