What are structures?
What are the individual pieces of data inside of a structure called?
What keyword is used to create a data type in C++?
What is it called when a data type is used?
How are fields accessed?
Create a data type called Student with 3 fields: name (string), id (integer), grade (character).
Create an array of 3 Students. In the last index of the array place the values: name is Mickey, id is 1955, grade is B.
Note: There will be no programming questions on the final.