博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年10月22日

摘要: 3 4 #include "stdafx.h" 5 6 int main(int argc, char* argv[]) 7 { 8 int a; 9 int b;10 int* const p1 = &a; //常量指针,指针不可以改,但是指针指向的内容... 阅读全文

posted @ 2014-10-22 21:54 六年一班刘同学 阅读(239) 评论(0) 推荐(0) 编辑

摘要: 1 // 变量在不同区域的默认初始值.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 6 //定义全局变量 7 int* p; 8 int a; 9 char c... 阅读全文

posted @ 2014-10-22 12:36 六年一班刘同学 阅读(219) 评论(0) 推荐(0) 编辑