Question 1  of   20

Which of the following is an implicitly-typed array?

A. var a = new[] { 1, 2, 3 };
B. var a = new int [] {};
C. int[] a = { 1, 2, 3 };
D. int[] a = new[] { 1, 2, 3 };