2020年9月10日

指针数组与数组指针

摘要: // #include <iostream> using namespace std; int main() { int* h[10]; cout << h << endl; int c[2][2] = { {1, 2}, {3, 4} }; cout << c << endl; cout << * 阅读全文

posted @ 2020-09-10 10:46 张芙蓉 阅读(110) 评论(0) 推荐(0) 编辑

导航