码迷,mamicode.com
首页 > 其他好文 > 详细

变量在不同区域的默认初始值

时间:2014-10-22 14:20:09      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

 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;
10 unsigned int d;
11 short e;
12 
13 int main()
14 {
15     int b;
16     unsigned int m;
17     int* p1;
18     char k;
19 
20     return 0;
21 }
22 
23 /*结论:
24 1.全局变量,当变量只进行了声明没有进行初始化,默认为 0.
25 2.局部变量,当变量只进行了声明,没有初始化. 指针变量的初始值为CCCCCCCC.
26   其他的变量默认值是随机,不确定.
27 */

 

变量在不同区域的默认初始值

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/adalovelace/p/4042806.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!