#include<iostream> int num[3]={66,77,88}; int main() { int(*pi)[3]=# std::cout<<*pi; }
结果是地址而不是数组。这背后的解释是什么?
c++ arrays
arrays ×1
c++ ×1