Hi everyone,
I have a cpp code (Let's call it code1.ccp) that reads some data form a file named "InputFile1" and after a few computation writes the results on the file "OutputFile1".What I need to do is to run this piece of code for InputFiles2 to InputFile100 and write the results to OutputFile2 to 100 accordingly. I was wondering if there is a way to change just the number in the code1.cpp and make 100 copies of the cpp code. I want to run them all at the same time.
Thanks in advance,