Welcome Guest.
Asked by: Steven Turner 221 views IT January 19, 2019
void init_Chessboard(char Chessboard[A][A], int ln); What does it mean?
+1Votes
Declare a function init_Chessboard, no return value, parameter one is an A*A character array, parameter two is an integer
The specific meaning depends on its definition
Marie- January 19, 2019 |
+7Votes
Upstairs positive solution. Is a normal function.
Maria- January 19, 2019 |
+1Votes
Declare a function init_Chessboard, no return value, parameter one is an A*A character array, parameter two is an integer
The specific meaning depends on its definition
+7Votes
Upstairs positive solution. Is a normal function.