指向const的指针和const指针
为编写将二维数组作为参数的函数,必须牢记:函数名被视为其地址。 可行函数定义实例:
int sum(int ar2[][4], int size) { int total = 0; for (int r =0; r < size; r++) for(int c = 0; c < 4; c++) total += ar2[r][c]; return total; }
本文分享自 iDoitnow 微信公众号,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文参与 腾讯云自媒体同步曝光计划 ,欢迎热爱写作的你一起参与!