Cygwin 没有在 C 中显示任何输出
Cygwin Not Showing Any Output in C
我在 Sublime 中写了这段代码:
int main (int argc, char **argv)
{
printf("Hello World");
return 0;
}
保存在 C:\cygwin64\home\user 为 helloworld.c.
在 Cygwin64 终端上输入:
$ gcc -o helloworld helloworld.c
But I'm not seeing any output.请帮忙
windows 可执行文件可以通过以下方式获得:$ ./helloworld
我在 Sublime 中写了这段代码:
int main (int argc, char **argv)
{
printf("Hello World");
return 0;
}
保存在 C:\cygwin64\home\user 为 helloworld.c.
在 Cygwin64 终端上输入:
$ gcc -o helloworld helloworld.c
But I'm not seeing any output.请帮忙
windows 可执行文件可以通过以下方式获得:$ ./helloworld