C++ Classes and Structures
January 15, 2021
Structure is similar to Class except for the fact that in structure declaration, all the members are public otherwise specified as private.
For example –
struct employee{
void set_name(char *n);
void getname(char *n);
private:
double wages;
};
main(){
employee Ted;
}