Which of the following lines should be added to complete the above code?
arr[num_of_dice][S]
arr[dice][sm]
arr[dice][S]
arr[S][dice]
Correct Answer: A — arr[num_of_dice][S]
Explanation:
The line arr[num_of_dice][S] completes the above code.