#include int main(int argc, char *argv[]){ for (int i = 1; i < argc; i++) { FILE *file = fopen(argv[i], "w"); fclose(file); } }