Problem Statement
Given a two-dimensional array a , the expression a[3][3] is equivalent to which of the given pointer notations? Pick ONE option *(*(a + 3) + 3) **(a + 6) *(a + 3) + 3 **(a + 9) Output Format Print the text of the correct option exactly as it appears above.