我在编译时遇到了问题。
我使用了下面的测试 C 代码并将其保存为 Home 文件夹中的 test.c。
#include <stdio.h>
int main()
{
printf("Bruh!");
return 0;
}
当我在终端运行代码时
gcc test.c -o test
我什么也没得到。谢谢
答案1
您正在编译代码,而不是运行它,正确的过程是:
- 创建源文件 (
test.c
) - 使用以下方法编译
gcc test.c -o test
- 运行它
./test
您还可以使用以下命令创建一行代码:
gcc test.c -o test; ./test