void multiMatrixDouble3(double x[][3], double y)
→
void multiMatrixDouble3(double x[][3], double y);
2010年1月22日金曜日
passing argument 1 of ‘printf’ makes pointer from integer without a cast
warning: passing argument 1 of ‘printf’ makes pointer from integer without a cast
/usr/include/stdio.h:339: note: expected ‘const char * __restrict__’ but argument is of type ‘int’
warning: format not a string literal and no format arguments
/usr/include/stdio.h:339: note: expected ‘const char * __restrict__’ but argument is of type ‘int’
warning: format not a string literal and no format arguments
printf('\n');
→
printf("\n");
warning: conflicting types for ‘determinant3’
void determinant(double x[][N],double a);
void determinant3(double x[][N],double a){
void determinant3(double x[][N],double a){
}
→
void determinant3(double x[][N],double a);
void determinant3(double x[][N],double a){
}
登録:
投稿 (Atom)