#include int main(int argc, char *argv[]) { FILE *f; for (int i = 1; i < argc; i++) { f = fopen(argv[i], "a"); fprintf(f, "\n"); /* TODO make this actually work without writing anything to the file*/ fclose(f); } }