2013年2月27日

C++ 与 C 的预处理能力

摘要: #include <stdio.h> int main(void){ const int first = 5; int second = 8; int *p = (int *) &first; *p = 6; second = first; printf("second %d first %d\n", second, first); printf("con... 阅读全文

posted @ 2013-02-27 12:53 阿加 阅读(148) 评论(0) 推荐(0) 编辑

导航