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

资源简介

C++实战源码-使用指针自增操作输出数组元素(入门级实例091).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include  

int main()
{
int (*p)[10];
int mm[10];
int *pp;
p = &mm;
pp = (int *)*p;
for (int i=0;i<10;i++)
*pp++ = i;

pp = (int *)*p;
for (i=0;i<10;i++)
cout<<*pp++<<“-“;
return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         329  2010-07-15 13:57  Pointer\Pointer.cpp
     文件        4548  2010-07-15 13:56  Pointer\Pointer.dsp
     文件         539  2010-07-15 13:56  Pointer\Pointer.dsw
     文件         294  2010-07-15 13:56  Pointer\StdAfx.cpp
     文件         769  2010-07-15 13:56  Pointer\StdAfx.h

评论

共有 条评论