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