
C语言
文章平均质量分 92
克里斯的猫
这个作者很懒,什么都没留下…
展开
-
C语言指针与地址 Pointers & Addresses
C PointersPointers are much used in C, partly because they are sometimes the only way to express a computation, and partly because they usually lead to more compact and efficient code than can be obtained in other ways.This post aims at a clear illustra原创 2020-11-08 17:41:35 · 1406 阅读 · 0 评论 -
C语言编译步骤 4 Stages of C Compilation
The 4 Stages of C CompilationC is a compiled language, which means it is interpreted by the machine at “compile time” instead of upon execution.In summary, the compilation can split into 4 stages:- preprocessing- compilation- assembly- linking(Onl原创 2020-11-08 13:22:25 · 733 阅读 · 0 评论 -
C语言位运算 Bitwise Operator
Bitwise Operators in C Programming LanguageWhen I first learn C, I found it’s hard to understand the set of bitwise operations, it took me long time to search useful resources while still don’t make sense. However my life changed until I found a famous bo原创 2020-11-06 22:00:36 · 2081 阅读 · 0 评论