摘要:
使用VS Code编写C++代码 进阶(下) 阅读全文
摘要:
C++ 之字符串作为函数的参数 阅读全文
摘要:
C++之二维数组作为函数的实参 int sum(int (*ar2)[4],int size) //或 int sum(int ar2[][4],int size) // 可读性更强 指针的类型指定了列数。行数传递给了函数参数size. ar2[r][c] = *(*(ar2+r)+c) sum() 阅读全文