当前位置: 技术问答>linux和unix
菜鸟提问:gcc编译后为什么不能运行?
来源: 互联网 发布时间:2015-03-07
本文导语: hello.c #include int main() { printf("hello world"); } #gcc hello.c -o hello 后生成一个 hello #hello -bash: hello: command not found 为什么?? | #./hello
hello.c
#include
int main()
{
printf("hello world");
}
#gcc hello.c -o hello
后生成一个 hello
#hello
-bash: hello: command not found
为什么??
#include
int main()
{
printf("hello world");
}
#gcc hello.c -o hello
后生成一个 hello
#hello
-bash: hello: command not found
为什么??
|
#./hello