如何从终端 运行 我的 .c 程序一行?

How do I run my .c program from terminal in one line?

我在 Windows10 上使用 Min-GW GCC 编译器。每次编译都需要做一个.exe然后运行就可以了。有什么方法可以一步完成吗?

您可以像在 linux 或 macOS 上一样在 windows 中组合命令!

gcc compilefile && c:/executefile.exe

(你需要用 min-gw 和你的 exe 路径替换那些东西)

链接:

  • How do I run two commands in one line in Windows CMD?