I have a .exe which requires 3 integers as input. For example:
myCode.exe < input.txt
In input.txt:
2
3
8
Now I want to put the command in a batch file. how can I write the batch file? (Here I want to pass 3 fixed integers in the batch file)
THANKS!