在Kernighan和Ritchie编写的经典C语言著作
The C Programming Language 一书中,第一个程序是极其简短的。它仅仅输出了一条hello,world消息。
- #include<stdio.h>
-
-
int main()
-
{
-
printf("hello,world!\n");
-
-
return 0;
-
}
这也是被大多数C语言书籍采用作为第一个C语言程序。最近在cnBeta看到《》,无语,笑着飘过。
这几天看了
C Programming:A Modern Approach,Second Edition(中文版),作者没有使用hello,world作为第一个C程序,而是尊重另一个C语言的传统:显示双关语。
- #include<stdio.h>
-
-
int main()
-
{
-
printf("To C,or not to C:that is the question.\n");
-
-
return 0;
-
}
呵呵,第一次见到我就乐了(我少见多怪了,看来!)。
无论使用那种,都是一种类似尊重传统的传承性的东西在里面,何必像上面提到的那篇文章那么纠结呢?
好吧,最近发现CU的博客升级了,默认的博客风格也很好看哦。第一篇日志,献给传统的hello,world 吧。不过,我喜欢下面的方式哦!
- #include<stdio.h>
-
-
int main()
-
{
-
printf("Hello,big big world!\n");
-
-
return 0;
-
}
Google一下 ---\---+---/---
你知道的就多了! { o_o }
┏━━━━━━━━━━oOo━(__)━oOo━┓
hello,big big world!
┗━━━━━━━━━━━━━━━━━━┛
┏━━━━┓ ┏━━━━┓
┃ ┃ ┃
手气不错┃
┗━━━━┛ ┗━━━━┛
阅读(1614) | 评论(0) | 转发(0) |