题目描述 单选 请在下列选项中,选出能把数组a的全部元素都设定为0的代码。 A. memset(a, 0); B. memset(a, a + n, 0); C. memset(a, 0, sizeof(a)); D. memset(a, 0, sizeof());