
c
p_a_p_r_i_k_a
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
autocast between primtive types
原创 2012-09-17 21:30:48 · 278 阅读 · 0 评论 -
The compilation process of C
Lexical units--The lexical units of a program are identifiers, special words, operators, and punctuation symbols. The lexical analyzer ignores comments in the source program because the compiler has n原创 2012-09-17 14:41:06 · 591 阅读 · 0 评论 -
Anatomy of a C program
原创 2012-09-18 16:43:32 · 364 阅读 · 0 评论 -
Anatomy of a function
原创 2012-09-18 17:14:40 · 266 阅读 · 0 评论 -
const pointer and array
const pointer starting from basic. 1.int var; //we get a int variable named var 2.const int var; //we get a int variable named var原创 2013-03-06 16:56:35 · 597 阅读 · 0 评论 -
The EOF character of C
EOF is defined in stdio.h and you should not assume it to be of any particular value. a program used to show how to catch EOF from stdin: (from C Primer Plus) int main(void) { int ch;原创 2013-03-02 10:44:14 · 500 阅读 · 0 评论