更新 0-Getting Started 开始.md

This commit is contained in:
rabix 2024-05-13 10:19:00 +08:00
parent ee261667ea
commit 278946c91e
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ int main(void) {
assert(a + b == 8);
}
```
https://godbolt.org/z/56h6qMhTh
编译运行它,结果是什么都没有,这说明没有问题,那么如果不小心打错了呢,比如你是复制粘贴的第四行只改了变量名
@ -27,6 +28,7 @@ int main(void) {
assert(a + b == 8);
}
```
https://godbolt.org/z/ehfed3zv3
那么很快,当你运行时,程序就会提示你预先认为的`a + b == 8`并不成立,导致出错的代码是`/app/example.c`他的行数是`7`。