// student_information.c // // Written by YOUR-NAME (YOUR-ZID) // on TODAYS-DATE // // Accepts two students' details from the command line and prints them // in alphabetical order by last name. #include #include // Constants #define SIZE 1024 struct student { char first_name[SIZE]; char last_name[SIZE]; char zid[SIZE]; }; int main(int argc, char *argv[]) { // Assign the information from the command line to the structs // Determine which student comes first alphabetically by last name // Print student details in order return 0; }