当前位置: 技术问答>linux和unix
初学者——问题非常简单——程序不能运行
来源: 互联网 发布时间:2015-07-08
本文导语: 我写了一个非常简单的hellow world程序用gcc编译通过并生成可执行文件,我用shell执行时提示没有发现命令,可用gdb调试也能出结果。谢谢各位。 | 你要这样运行自己的程序: ./helloworld 而不是 he...
我写了一个非常简单的hellow world程序用gcc编译通过并生成可执行文件,我用shell执行时提示没有发现命令,可用gdb调试也能出结果。谢谢各位。
|
你要这样运行自己的程序:
./helloworld
而不是
helloworld
./helloworld
而不是
helloworld
|
./helloworld
|
./a.out 或者./your program name
~_~
~_~
|
c++
///////////////////////////
g++ -o test test.cpp
./test
////////////////////////////
c
///////////////////////////////
gcc -o test test.c
./test
/////////////////////////
///////////////////////////
g++ -o test test.cpp
./test
////////////////////////////
c
///////////////////////////////
gcc -o test test.c
./test
/////////////////////////