1

我一直在 Linux 中使用 gcc 开发我的 C 程序。现在我被迫使用Windows。我在 Visual Studio express 2012 中完成了一个快速程序。它是一个带有输入参数的控制台应用程序。

在 Linux 上,我只能使用./programname input1 input2.

如何在 Windows 命令提示符下执行此操作?如果没有,有没有人知道从 Visual Studio 部署我的控制台应用程序的好教程?谢谢。

4

2 回答 2

1

如果当前目录中有“programname.exe”,则只需键入:

programname input1 input2
于 2013-06-25T18:46:05.243 回答
1

你基本上可以像在 Linux 上那样做。

如果您已经构建了程序,您只需cd像在 Linux 上一样导航到 .exe 文件所在的目录(使用 )。

然后就跑programname input1 input2

于 2013-06-25T18:47:41.043 回答