Given the constants: const int NUMBER_OF_ROWS = 7: //This can be set to any numb
ID: 3883716 • Letter: G
Question
Given the constants: const int NUMBER_OF_ROWS = 7: //This can be set to any number. const int NUMBER_OF_COLUMNS = 6: //This can be set to any number. Complete the formal parameter matrix in the function header. You must use the constant(s) provided. void sunflower(int matrix int noOfRows) _________ Give the constants: const int NUMBER_OF_ROWS = 7: //This can be set to any number. const int NUMBER_OF_COLUMNS = 6: //This can be set to any number. and the following declaration and initialization of board int board[NUMBER_OF_ROWS][NUMBER_OF_COLUMNS] = {{23, 5, 6, 15, 18}, {4, 16, 24, 67, 10}, {12, 54, 23, 76, 11}, {1, 12, 34, 22, 8}, {81, 54, 32, 67, 33}, {12, 34, 76, 78, 2}}: //Line 1 complete the following line of code that will pass the appropriate parameters to summing board sunflows { }: //Line 4 ___________Explanation / Answer
Hi,
Below are the answers-
Answer 3-
void sumRows(int matrix, int noOfCols,int noOfRows)
Answer 4-
sumRows(board,NUMBER_OF_ROWS,NUMBER_OF_COLUMNS);
Thanks and Regards,
Vinay Singh
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.