Popular repositories
-
-
-
Tinyhttpd Public
Forked from EZLippi/Tinyhttpd
tinyhttpd 是一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。
C 2
-
-
-
161 contributions in the last year
Less
More
Contribution activity
September 2021
Created 1 commit in 1 repository
Created 1 repository
Created a pull request in wangdoc/clang-tutorial that received 1 comment
Opened 1 other pull request in 1 repository
wangdoc/clang-tutorial
1
merged
Created an issue in wangdoc/clang-tutorial that received 2 comments
运算符-> 逗号运算符 运算结果有点问题
x = 1, 2, 3;
上面示例中,逗号的优先级高于赋值运算符,所以会执行。由于逗号运算符返回最后一个表达式的值,所以变量x等于3。
x = 1, 2, 3; 执行后 x 的结果是 1,逗号的优先级高于赋值运算符 这句话有误,应该是 逗号的优先级低于赋值运算符,且按从左到右的顺序运算。所…
2
comments

