To run a program in Visual Studio with command line arguments, you will need to provide the arguments using the project settings.
A program named filter requires 2 command line arguments - two file names:
filter tinyG.txt tinyT.txt
To set the command line arguments to: tinyG.txt and tinyT.txt
Note that you can have different command line arguments for the Debug configuration and the Release configuration.
However, the command line arguments are set in the same way for both configurations.
So if you use both configurations, you will need to set the arguments twice, once for each configuration.