Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一个非常小的程序,叫做cow.c。当我在编译后尝试从 cygwin 终端运行它时,我没有得到任何输出。编译时没有错误。
#include <stdio.h> int main() { printf("%s\n", "COW?"); return(0); }
编辑:我觉得问题出在 cygwin 上……我需要采取什么步骤来确保将输出打印到 cygwin 终端而不是丢失在 void 中吗?
跑:
gcc cow.c -o app
然后输入:
./app
这应该有效。