c_cpp 指针数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 指针数组相关的知识,希望对你有一定的参考价值。

#include <iostream>

using namespace std;

int main(){
	int* pArr;
	int arr[2] = {10,20};
	pArr = arr;

	int a = 20;
	int b = 30;

	int** ppArr;
	ppArr = new int*[2];

	ppArr[0] = &a;
	ppArr[1] = &b;

	cout << *ppArr[0] << " " << *ppArr[1] << endl;

	cin.get();
	return 0;
}

以上是关于c_cpp 指针数组的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 将数组指针传递给函数

c_cpp c加上数组指针算术

c_cpp 该C程序使用指针计算数组元素的总和。程序使用指针遍历数组并将元素加起来

c_cpp 将int数组传递给指针c加上

c_cpp 在c中使用void指针数组的一些练习

c_cpp 允许通过C中的void指针从任何类型访问字节数组