answersLogoWhite

0

a data class that can be used to make a data type out of other data types

eg:

struct person

{

char* name;

char gender;

};

you can now make an instance of person like other data types

person examplePerson;

to access it's members use a period if not a pointer or -> if it is

examplePerson.gender = 'm';

User Avatar

Wiki User

14y ago

What else can I help you with?