Kizspy | Question: 37
(Choose 1 answer)
Which of the following code snippets can be used to create an array with all elements initialized to zero in the C language?
A. int a[5] = {0};
B. int a[5] = [0, 0, 0, 0, 0);
C. int a[5] = (0, 0, 0, 0, 0);
D. int a[5];