Write a C program that creates a structure and displays its
content. • Create a struct that will be used to hold a student's
name, age, and year in school (Freshman, Sophomore, Junior, or
Senior) • Within function main, dynamically allocate space to hold
the structure and assign a pointer to point to the memory space
allocated • Read in (from the keyboard) the student's name, age,
and year in school • Create a separate function with the prototype:
void...