I want the user to be able to type
start < read_from_old_file.c > write_to_new_file.c
//or whatever type of file
So once the user types the command "start" followed by a "<", this will indicate reading a file, whereas ">" will indicate writing to a new file.
Problem is, I know you can use
scanf("%s", buff);
But this would read one word and not go onto the next.