I have a ton of printf statements and I would like to write all of them to a text file. I realize I could just add fprintf statements after each one but is there a better way, such as a funtion, or should I just write my own function? I feel like this is probably a standard procedure, I just don't know what it's called, so it's hard to find an answer by googling.
EDIT: Just for clarity, I'd like the output to keep going the terminal like normal, but also be printed to a file simultaneously. Several people are suggesting bash commands. When should those be executed? After the program is run?