// Read into DATAFILE and get Stock Info file = fopen(argv[1], "r"); // fgets(s, MAX_BUFF, file); // printf("Printing s from datafile: %s\n", s); while(1) { fgets(s, MAX_BUFF, file); printf("Printing s: %s\n", s); if(ferror(file)) { break; } if(s == NULL) { break; } if(strncmp(s, stock_id, 5) == 0) { printf("Found the stock in %s!\n", argv[1]); break; } else printf("Cannot find the stock ...