/* * fileIO - read a list of file names as command-line arguments, * and print the first line of each file * * usage: ./fileIO [filename].... * * CS50, Spring 2022 */ #include #include int main(const int argc, const char *argv[]) { int status = 0; for (int i = 1; i < argc; i++) { } return status; }