RE: Difference between "C structure" and "C++ structur...
They are different. C struct can only contain data while C++ struct can contain functions and access limitation such as public private etc just as a class (not totally the same as class!)
RE: Difference between "C structure" and "C++ structure".
Difference between 'C structure' and 'C++ structure' is that the structure in case of 'C' will only hold data definition whereas structure in 'C++' will contain both data definition and functions.
RE: Difference between "C structure" and "C++ structure".
C does not have limitation access. Structures in C are used to regroup data from different types.
In C++ structure have limitation access propreties (private public protected) with public access as default can contain methods and can be used as a class.