78.7k views
4 votes
In your lab program, the 2-dimensional array was filled using the initialization list. In your homework program, do not use the initialization list anymore; instead, create a separate function called fillarray that will fill the 2-dimensional array with the scores entered from the keyboard in the same format as the sample run below.

a) Dynamic memory allocation
b) User-defined function
c) μltithreading
d) Recursion

1 Answer

3 votes

Final answer:

This question is about filling a 2-dimensional array in a homework program using dynamic memory allocation and a user-defined function.

Step-by-step explanation:

The subject of this question is Computers and Technology.

In this question, the student is asking about filling a 2-dimensional array in a homework program. They have mentioned that the array should be filled with scores entered from the keyboard. Instead of using the initialization list, the requirement is to create a separate function called fillarray. This function will dynamically allocate memory for the array and fill it with scores entered by the user.

This question relates to the topic of dynamic memory allocation and user-defined functions in programming.

User Personaelit
by
7.3k points