|
发表于 2003-6-1 15:56:56
|
显示全部楼层
我还是不懂
man:/gcc太长了,没有办法看下去
我自己做了一个程序:
/*************test.c****************/
#include "stdio.h"
main()
{
printf("hello,world!");
}
/*****************end***********/
在终端下运行:
gcc test.c -o test.out
然后发现生成了一个test.out
运行
./test.out
什么反应也没有,直接返回了
终端如下:
[weiwei@localhost weiwei]$ gcc test.c -o test.out
[weiwei@localhost weiwei]$ ls
??/ pic/ tmp/
2001121922.swf pro/ unnamed.pro
[BEYOND]-AMANI.dat Real/ win/
[BEYOND]-光辉岁月.dat RealPlayer9/ 孙燕子.avi
cc/ [S.H.E-]恋人未满(强力推荐).mpg [戴佩妮]你要的爱-.mpg
Desktop/ snapshot1.png 方世玉A.rm
Documents/ test/ 方世玉B.rm
evolution/ test1.c [李小东]冬季的校园.avi
form1.ui test2/ [梁咏琪]短发.mpg
form1.ui~ test3/ [梁咏琪]胆小鬼.mpg
Mail/ test4/ [许美静]阳光总在风雨后.dat
Mandrake/ test5/ [陈琳] - 爱就爱了.DAT
mnt/ test.c [黑豹]无地自容.dat
mydata/ test.out*
[weiwei@localhost weiwei]$ ./test.out
[weiwei@localhost weiwei]$
请问为什么没有打印hello,World这一句?
或则是如何查看程序结果? |
|