Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这个声明
是不正确的。看来你的意思是
This 声明了一个由
n
指针组成的数组,指向int[size]
类型的数组。对于这些声明
,第一个声明一个指向一维数组的指针,第二个声明一个指向二维数组的指针。
这是一个演示程序。
程序输出是
This declaration
is incorrect. It seems you mean
This declares an array of
n
pointers to arrays of the typeint[size]
.As for these declarations
then the first declares a pointer to one-dimensional array and the second one declares a pointer to two-dimensional array.
Here is a demonstration program.
The program output is