|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
<pre>[hong@localhost sle2]$ gcc test.c -o test
gcc: 错误:test.c:没有那个文件或目录
gcc: 致命错误:没有输入文件
编译中断。
[hong@localhost sle2]$ vi test.c
[hong@localhost sle2]$ gcc test.c -o test
<b>test.c:1:19:</b> <font color="#EF2929"><b>致命错误:</b></font>stdio,h:没有那个文件或目录
#include <stdio,h>
<font color="#8AE234"><b> ^</b></font>
编译中断。
[hong@localhost sle2]$ ^C
[hong@localhost sle2]$ vi test.c
[2]+ 已停止 vim test.c
[hong@localhost sle2]$ su root
密码:
[root@localhost sle2]# vi test.c
[root@localhost sle2]# gcc test.c -o test
<b>test.c:</b> 在函数‘<b>main</b>’中:
<b>test.c:5:2:</b> <font color="#AD7FA8"><b>警告:</b></font>隐式声明与内建函数‘<b>printf</b>’不兼容 [默认启用]
printf("Hello World!\n");
<font color="#8AE234"><b> ^</b></font>
[root@localhost sle2]# gcc test.c
<b>test.c:</b> 在函数‘<b>main</b>’中:
<b>test.c:5:2:</b> <font color="#AD7FA8"><b>警告:</b></font>隐式声明与内建函数‘<b>printf</b>’不兼容 [默认启用]
printf("Hello World!\n");
<font color="#8AE234"><b> ^</b></font>
[root@localhost sle2]# ||
bash: 未预期的符号 `||' 附近有语法错误
[root@localhost sle2]# l|
>
> ^C
[root@localhost sle2]# ll
总用量 28
-rwxr-xr-x. 1 root root 8360 9月 4 21:24 <font color="#00AF00">a.out</font>
-rwxr-xr-x. 1 root root 8360 9月 4 21:21 <font color="#00AF00">test</font>
-rw-rw-r--. 1 hong hong 55 9月 4 21:17 test.c
[root@localhost sle2]# a.out
bash: a.out: 未找到命令...
[root@localhost sle2]# test
[root@localhost sle2]# ./test
Hello World!
[root@localhost sle2]# ^C
[root@localhost sle2]#
</pre>
先cd跳转 到你的test.c 的目录下再执行 gcc 命令
|
|