1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define TSIZE 45 5 6 struct film { 7 char title[TSIZE]; 8 int rating; 9 struct film *next; 10 }; 11 char * s_gets(char * st, int n); 12 13 int main(void) 14 { 15 struct film * head = NULL; 16 struct film * prev; 17 struct film * current; 18 char input[TSIZE]; 19 20 puts("Enter first movie title:"); 21 while(s_gets(input, TSIZE) != NULL && input[0] != '