using namespace std;int n[..._数组指针">
赞
踩
这两者前两个字可以看成是形容词,后两个词可以看成是名词:
名称 | 举例 | 是什么 | 特点 |
---|---|---|---|
指针数组 | int *p[10] | 数组 | 由指针构成,例子中指针指向整型 |
数组指针 | int(*p)[10] | 指针 | 例子中指向整型数组 |
例1:
#include "stdafx.h"
#include <iostream>
using namespace std;
int n[][3] = {
10,20,30,40,50,60};
int _tmain(int argc, _TCHAR* argv[])
{
int
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。