问题描述
解决方案
消除JMVC中的warning
linux make:消除Warning
解决方案二:
add函数中把iA[][7]写成iA[][]
解决方案三:
配置编译器,让其不显示警告
解决方案四:
要重视warning.
你在main中定义,int iA[2][3],
add( int iA[][7],int i,int j)
调用肯定是不对的。
可以这样定义:
void add( int (*iA)[3],int i,int j)
可参考:
http://blog.csdn.net/qq_27183003/article/details/49638895
时间: 2024-10-02 01:53:30