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

资源简介

C++实战源码-指针和数组的常用方法(入门级实例094).zip

资源截图

代码片段和文件信息

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

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

int main(int argc char* argv[])
{
char msg[] = “大家好,见到诸位很高兴。“;

char * cp;
int i;
//指针访问,指针表示
for (cp = msg;*cp;cp++)
cout << *cp ; cout << ‘\n‘;
//下标访问,下标表示
for (i = 0;msg[i];i++)
cout << msg[i]; cout << ‘\n‘;
//指针访问,下标表示
for (cp = msg;cp[0];cp++)
cout << cp[0]; cout << ‘\n‘;
//下标访问,指针表示
for (i = 0;*(msg+i);i++)
cout << *(msg+i); cout << ‘\n‘;
//指针和下标访问,指针表示
for (i = 0cp = msg;*(cp+i);i++);
cout << *(cp+i);
//指针和下标访问,下标表示
for (i = 0cp = msg;cp[i];i++)
cout << cp[i]; cout << ‘\n‘;

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         752  2010-07-17 14:30  array\array.cpp
     文件        4524  2010-07-17 14:14  array\array.dsp
     文件         535  2010-07-17 14:14  array\array.dsw
     文件         292  2010-07-17 14:14  array\StdAfx.cpp
     文件         769  2010-07-17 14:14  array\StdAfx.h

评论

共有 条评论