Final answer:
To store scores and handle updates in a basketball season using dynamic arrays in a program, you can use the provided functions alterGameScore, totalScore, and printScores.
Step-by-step explanation:
To store the scores in each game and handle the update, you can use dynamic arrays. The program can prompt the user for the score of the specific game and add it to the respective dynamic array using the alterGameScore function. The alterGameScore function would take the dynamic array and game number as parameters, and within the function, it can ask the user for the additional points and add them to the specific game array.
To display the updated scores, you can use the printScores function, which takes the dynamic array and the total number of games as parameters. This function can loop through the array and print the scores for each game. Finally, to calculate the total score for the season, you can use the totalScore function, which takes the dynamic array and the total number of games as parameters. This function can loop through the array and accumulate the scores for each game, returning the total score.