使用 Mac 终端实用程序时 printf 不返回任何内容

发布于 2024-11-08 13:55:07 字数 251 浏览 0 评论 0原文

我写了一个小型的 Hello World 应用程序。

#include <stdio.h>
int main(int argc, const char * argv[])
{
   printf("Hello World\n");


}

当我运行时,

gcc fileName.c 

没有任何内容返回到终端。有人可以告诉我我做错了什么吗?

I wrote a small Hello World app.

#include <stdio.h>
int main(int argc, const char * argv[])
{
   printf("Hello World\n");


}

When I run

gcc fileName.c 

nothing is returned to the terminal. Can someone tell me what I'm doing wrong?

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

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

发布评论

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

评论(2

祁梦 2024-11-15 13:55:07

gcc 是编译器。它输出一个名为 a.out 的文件,除非使用 -o 标志另外指定,例如 gcc -o myprogram fileName.c 它将创建来自源 myFile.c 的名为 myprogram 的可执行文件。

要运行程序,请在终端中写入:./a.out

gcc is the compiler. it outputs a file called a.out unless specified otherwise using the -o flag, for example gcc -o myprogram fileName.c which will create an executable called myprogram from the source myFile.c.

To run your program write: ./a.out in the terminal

撑一把青伞 2024-11-15 13:55:07

要编译可执行文件,您需要运行:

gcc fileName.c -o app

这将在当前目录中创建一个名为 app 的可执行文件。然后您可以使用以下命令运行该可执行文件:

./app

To compile an executable, you need to run:

gcc fileName.c -o app

That will create an executable file named app in the current directory. You then run that executable with:

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