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

C变量作用域

时间:2014-09-04 00:03:47      阅读:156      评论:0      收藏:0      [点我收藏+]

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

#include <iostream>
using namespace std;

int* returndie()      // 除了地址为a的,a以后的都死了
{
    int a[4] = { 1234 };
    return a;
}

int main()
{
    auto a = returndie();
    for (size_t i = 0; i < 4; i++)
    {
        cout << a[i] <<  ;
    }
    getchar();

    return 0;
}

 

output:

1 4061784 1940440 1911712 

 

 

 

 

C变量作用域

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

原文地址:http://www.cnblogs.com/likeatree/p/3954994.html

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