当前位置: 技术问答>linux和unix
新手问一个linux下gcc编译的问题
来源: 互联网 发布时间:2015-12-19
本文导语: 我通过vi写了一个极其简单的程序 #include int main() { printf("hello!n"); return(0); } 在终端输入gcc hello.c -o hello 在文件目录下生成了hello文件,但文件属性为application/x-execuable-binary,在终端运行不了, 也打不开。 怎么...
我通过vi写了一个极其简单的程序
#include
int main()
{
printf("hello!n");
return(0);
}
在终端输入gcc hello.c -o hello
在文件目录下生成了hello文件,但文件属性为application/x-execuable-binary,在终端运行不了,
也打不开。
怎么才能运行呢?(很早以前我编译过该文件后,hello的文件类型是text/plain)
多谢!
#include
int main()
{
printf("hello!n");
return(0);
}
在终端输入gcc hello.c -o hello
在文件目录下生成了hello文件,但文件属性为application/x-execuable-binary,在终端运行不了,
也打不开。
怎么才能运行呢?(很早以前我编译过该文件后,hello的文件类型是text/plain)
多谢!
|
先进入到程序所在的目录
#gcc -o hello hello.c
运行的话 #./hello
#gcc -o hello hello.c
运行的话 #./hello