/////////////////////////////////////////////// //EXAMPLE OF A STRUCTURE/////////////////////// #include #include void main() { const int MAX=15; //WE DEFINE A STRUCTURE CALLED EMPLOYEE struct employee { char name[MAX]; float salary; }; //NOW WE DECLARE A VARIABLE NAMED EMPLOYEE_1 employee employee_1; cout<<"What is your name?"<>employee_1.salary; cout<<"your salary is $"<