notes for the c programming language

来源:互联网 发布:免费mysql数据库空间 编辑:程序博客网 时间:2024/05/22 08:24
Enumerations have become part of the language, formalizing a feature of long standing
--将存在已久的enumeration这种C语言特性正式化 
 
 An integer constant is a series of one or more numerals followed by an optional radix specifier.
 --   -123 不是整形常量
 
For external names, the standard guarantees uniqueness only for 6 characters and a single case
-- "a single case" 是大小写的意思。也就是不分大小写(只认一个大小写)
 
There is an element of truth in saying “Assembly language is simple.”
-- “Assembly language is simple.” 这句话具有真实/正确的成分

After all, how hard can it be to move data between registers and do a calculation?
--究竟