Multiple Choice
Which statement would be used to declare a 10-element integer array c?
A) array c = int[10];
B) c = int[10];
C) int array c[10];
D) int c[10];
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q18: getline(superstring, 30); is equivalent to which of
Q19: Given a built-in array of ints named
Q20: Which of the following is not a
Q21: A function that prints a string by
Q22: Three of the following expressions have the
Q24: Pointers cannot be used to:<br>A) Contain memory
Q25: To prevent modification of a built-in array's
Q26: A string array is commonly used for:<br>A)
Q27: Which of the following is not a
Q28: Which of the following is not true