• 大小: 2.79KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-指针作为函数的返回值(入门级实例098).zip

资源截图

代码片段和文件信息

// PointRet.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“

int *GetDataFromIndex(int index);//函数原型
int main(int argc char* argv[])
{
for (int i = 0;i<7;i++)
{
cout << *GetDataFromIndex(i) << ‘\n‘;//输出指定索引下的值
}
return 0;
}

int *GetDataFromIndex(int index)
{
static int Data[] = {98563426887549};//定义数组
return &Data[index];//返回元素的地址
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         453  2010-07-19 13:38  PointRet\PointRet.cpp
     文件        4560  2010-07-19 13:32  PointRet\PointRet.dsp
     文件         541  2010-07-19 13:32  PointRet\PointRet.dsw
     文件         295  2010-07-19 13:32  PointRet\StdAfx.cpp
     文件         769  2010-07-19 13:32  PointRet\StdAfx.h

评论

共有 条评论