Comparison between C++ structure C++ class
C++ Structure : 1. C++ structure can have Data member and function members as well ( C structure doesn’t have function members) 2. C++ Structure can have access specifier. default access is Public 3. C++ Structure Can be inherited just like the classes. C++ Classes : 1. C++ Class can have Data member and function [...]
Continue reading →