In what scenarios is it better to use a struct vs a class in C++?
struct
class
I thought that Structs was intended as a Data Structure (like a multi-data type array of information) and classes was inteded for Code Packaging (like collections of subroutines & functions)..
:(