QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 976|回复: 3

???? cc a.c???

[复制链接]
发表于 2003-1-17 17:50:55 | 显示全部楼层 |阅读模式
a.c为
main()
{
printf("fdakjfd");
}

完后我cc a.c
./a.out为什么煤油结果!@!!!没有结果!!!!!!!!!!!!!!!!
发表于 2003-1-17 17:56:31 | 显示全部楼层
在经典的K&R的C教材中,这是一个错误的程序,正确的形式应该是
[code:1]
main()
{
        printf("Hello,World!\n");
}
[/code:1]
回复

使用道具 举报

发表于 2003-1-20 09:21:39 | 显示全部楼层
不是错误,在text consol下是正常的。
回复

使用道具 举报

发表于 2003-1-20 15:15:19 | 显示全部楼层
《The C Programming Language》
by Brian W.Kernighan & Dennis M.Ritchie

Exercise 1-1
Run the "hello world "program on your system. Experiment with leaving out parts of the program to see what error messages you get.
[code:1]
#include <stdio.h>

main()
{
        printf("hello, world");
}
[/code:1]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-16 12:28 , Processed in 0.056408 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表