Assume an array is defined as
int[] nums = {2, 3, 4, 5};
Which of the following would display the values in the array in reverse?
A. for(int x = 4; x > 0; --x) Write(nums[x]);
B. for( int x = 4; x >= 0; --x) Write(nums[x]);
C. for(int x = 3; x >= 0; --x) Write(nums[x]);
D. for(int x = 3; x > 0; --x) Write(nums[x]);
C. for(int x = 3; x >= 0; --x)