Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wizardforcel committed Jul 31, 2016
1 parent e9d918e commit f5421d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch1.md
Expand Up @@ -196,6 +196,6 @@ hello.c:(.text+0xf): undefined reference to `printff'
collect2: error: ld returned 1 exit status
```

`id`是UNIX链接器的名称,这样命名是因为“装载”(loading)是编译过程中的另一个步骤,它和链接关系密切。
`ld`是UNIX链接器的名称,这样命名是因为“装载”(loading)是编译过程中的另一个步骤,它和链接关系密切。

一旦程序运行起来,C会执行非常少的运行时检测,所以你会看到极少的运行时错误。如果你发生了除零错误,或者执行了其它非法的浮点操作,你会得到“浮点数异常”。而且,如果你尝试读写内存的不正确位置,你会得到“段错误”。

0 comments on commit f5421d2

Please sign in to comment.