在 xp 中从 cmd / dos 运行 C 程序

发布于 2024-08-23 23:49:53 字数 198 浏览 4 评论 0原文

这可能是一个新手问题,很抱歉,是否可以从 cmd 运行 C 程序?

我正在创建一个程序,该程序需要 3 个命令行参数、一个字符串分隔符和 2 个文件名,并且我有一些条件,例如是否传递了更多或更少的命令行项,然后打印错误等,

我无法从 dev- 测试这一点c++,因为我不知道如何使用,并且会发现使用 cmd 更容易,我想感谢您的

帮助

this maybe a noobish question so sorry, is it possible to run c programmes from cmd?

I am in the process of creating a programme that takes 3 command line arguments, a string seperator and 2 file names and i have conditions such as if more or less command line items are passed then print an error etc

i cannot test this from dev-c++ as i dont no how and would find it easier to use cmd i guess

thanks for the help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

絕版丫頭 2024-08-30 23:49:53

是的,你可以这样做:

c:\> cd c:\directory\where\the\program\is
c:\directory\where\the\program\is> program arg1 arg2 arg3 separator file1 file1

Yes, you can do that:

c:\> cd c:\directory\where\the\program\is
c:\directory\where\the\program\is> program arg1 arg2 arg3 separator file1 file1
辞慾 2024-08-30 23:49:53

另外,在 dev-c++ 中的某个地方,会有一个“命令参数”或“要执行的字符串”的条目,以允许您指定它们 - 抱歉,我不知道具体的 dev-c++。

Also Somewhere in dev-c++ there will be an entry for 'command arguments' or 'string to execute' to allow you to specify them - sorry don't know dev-c++ specifically.

总攻大人 2024-08-30 23:49:53

使用 dev-c++ 调试器(按 F9 激活它)。是的,您可以从 cmd 运行 C 程序。调用将是:

C:\MyProgram.exe param1 param2 param3

Use the dev-c++ debugger (you activate it by pressing F9). And yes, you can run C programmes from cmd. The call would be:

C:\MyProgram.exe param1 param2 param3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文