summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-02-16 15:08:52 +0100
committerNami-Doc <vendethiel@hotmail.fr>2014-02-16 15:08:52 +0100
commitb8e4a27551f0d3cec1724113ed45b4f44bbacee0 (patch)
treee21609386f8b4fdb809bb5495c2eb9fd3aa8e485
parent6840b080b069678a5f5e627b27716712b503257f (diff)
parent4b8b6240154e1bcb87edfd95d3a1eaf22341f450 (diff)
Merge pull request #530 from weakish/patch-10
c-cn: typo
-rw-r--r--zh-cn/c-cn.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/zh-cn/c-cn.html.markdown b/zh-cn/c-cn.html.markdown
index ecd2558e..223f6e35 100644
--- a/zh-cn/c-cn.html.markdown
+++ b/zh-cn/c-cn.html.markdown
@@ -331,8 +331,8 @@ printf("%d\n", (char)100.0);
///////////////////////////////////////
// 指针变量是用来储存内存地址的变量
-// 指针变量的声明也会告诉它所指向的数据的类型
-// 你可以得到你的变量的地址,并对它们搞乱。
+// 指针变量的声明也会告诉它所指向的数据的类型
+// 你可以使用得到你的变量的地址,并把它们搞乱,;-)
int x = 0;
printf("%p\n", &x); // 用 & 来获取变量的地址