From db02185b1443c160d98de03684d82d8be0dcf3b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=A7=E4=BB=99?= <1900919313@qq.com> Date: Fri, 18 Oct 2024 04:22:36 +0000 Subject: [PATCH] =?UTF-8?q?2024=E5=B9=B410=E6=9C=8818=E6=97=A5=2012:22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/notes/01_c-basic/05_xdx/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/01_c-basic/05_xdx/index.md b/docs/notes/01_c-basic/05_xdx/index.md index 760297d..a22996e 100644 --- a/docs/notes/01_c-basic/05_xdx/index.md +++ b/docs/notes/01_c-basic/05_xdx/index.md @@ -2361,7 +2361,7 @@ int main() { } ``` -## 2.8 运算符优先级和结合性 +## 2.8 运算符的优先级和结合性 * 在数学中,如果一个表达式是 `a + b * c` ,我们知道其运算规则就是:先算乘除再算加减。其实,在 C 语言中也是一样的,先算乘法再算加减,即:C 语言中乘除的运算符比加减的运算符的优先级要高。