#include #include // This time we make a simple program, which just writes its arguments into a file int main(int argc, char *argv[]) { FILE *file = fopen("output.txt", "w"); if(file) { for(int Index = 1; Index < argc; Index++) { char *CurrentString = argv[Index]; fprintf(file, "%s ",CurrentString); } fclose(file); } }