以下C/C++代码的输出结果是什么?
#include int main() {
int a[3] = {100, 200, 300};
int *p = a;
for (int i = 0; i < 3; ++i) {
std::cout << p[i] << ' ';
}
return 0;}