Answer:
A ) Sizeof(arr)/sizeof(arr[0])
B) Sizeof(arr[0])/sizeof(arr[0][0])
C) Sizeof(arr[0][0])/Sizeof(arr[0][0][0])
D) Sizeof(arr[0][0][0])/Sizeof(int)
Step-by-step explanation:
using only the size of operator and the name of the array to write an expression that will yield each of the array Dimensions in left-to-right order
A ) Sizeof(arr)/sizeof(arr[0])
B) Sizeof(arr[0])/sizeof(arr[0][0])
C) Sizeof(arr[0][0])/Sizeof(arr[0][0][0])
D) Sizeof(arr[0][0][0])/Sizeof(int)
attached below is the handwritten copy