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

资源简介

C++实战源码-数组地址的表示方法(入门级实例093).zip

资源截图

代码片段和文件信息

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

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

int main(int argc char* argv[])
{
int array[3][5] = 
{
{5698542536}
{3642314899}
{4235615243}
};

int *p1 = &array[2][3];//第三行第四列的元素地址
cout << *p1 << ‘\n‘;
int *p2 = array[1] + 2;//第二行第三列的元素地址
cout << *p2 << ‘\n‘;
int *p3 = array[0];//数组首地址
cout << *p3 << ‘\n‘;
int *p4 = array[2];//数组第三行的首地址
cout << *p4 << ‘\n‘;
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         537  2010-07-17 13:50  array\array.cpp
     文件        4524  2010-07-17 13:15  array\array.dsp
     文件         535  2010-07-17 13:16  array\array.dsw
     文件         292  2010-07-17 13:15  array\StdAfx.cpp
     文件         769  2010-07-17 13:15  array\StdAfx.h

评论

共有 条评论