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

通过函数返回数组

时间:2014-06-15 09:41:48      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   get   

C语言中,一个函数是不能直接返回一个集合类型的,但是我们可以返回一个数组地址,需要注意的是C语言不能返回局部变量(local variable)的地址,所以我们要在函数中将其定义为静态变量(static variable)。

#include<stdio.h>

int *get_arr();

int main()
{
    int *arr = get_arr();
    int i = 0;
    
    for(; i<3; i++)
    {
        printf("%d\t", *(arr+i));
    }
}

int *get_arr()
{
    static int arr[3];
    int i = 0;
    
    for(; i<3; i++)
    {
        arr[i] = i;
    }
    
    return arr;
}

 

通过函数返回数组,布布扣,bubuko.com

通过函数返回数组

标签:style   class   blog   code   color   get   

原文地址:http://www.cnblogs.com/yshyee/p/3789105.html

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