notice it is just displaying only the first file. let's fix this issue. we add while loop and used "argv[i]" instead of "argv[1]" . this way we can iteratively stdout files. now it works fine. #include #include #definePAGELEN20 #defineLINELEN512 void do_more(FILE *); int get_input(); int main(int argc , char *argv[]) { int i=0; if (argc == 1){ printf("This is the help page\n"); exit (0); } FILE ..