我在 Ubuntu 文本编辑器中输入了“Hello, World”程序。
文件“hello”已保存到documents
我已验证的文件夹中。
但是,“c”编译器(版本 7.4.0-1)找不到“hello”。
此外,“find”程序也找不到它。如果
您能给我提供任何帮助,我将不胜感激。
答案1
欢迎来到 Ask Ubuntu!
确保你在终端中与文件位于同一目录中hello.c
。输入cd /path/to/your_folder/
终端即可转到该文件。
然后,gcc hello.c -o helloout
应将其编译为输出文件helloout
。要执行编译后的代码,请键入./helloout
。
笔记:hello
如果我留下没有扩展名的代码文件.c
,gcc 会说
file not recognized: Unrecognized file format
按照我测试的示例(hello.c
)。
#include <stdio.h>
int main(){
printf("Hello, World\n");
return 0;
}