Info
此问题已关闭。 请重新打开它进行编辑或回答。
Error in my C program. Please help.
1 次查看(过去 30 天)
显示 更早的评论
int
show_matrix(float c[9][27], int size1=9, int size2=9)
ERROR=expected ';' ',' or ')' before '=' token
3 个评论
Torsten
2018-11-26
show_matrix(float c, int size1, int size2)
Define c and assign values to size1 and size2 before calling "show_matrix".
Walter Roberson
2018-11-26
C does not permit defining default values of parameters and does not permit initializing local variables in the function declaration or definition
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!