Multiple Choice
Which of the following is false about a function to which a built-in array is being passed?
A) It always knows the size of the built-in array that is being passed.
B) It is being passed the address of the first element in the built-in array.
C) It is able to modify the values stored in the built-in array.
D) The built-in array's name is used as an argument in the function call.
Correct Answer:

Verified
Correct Answer:
Verified
Q2: A pointer can not be assigned to:<br>A)
Q3: A function that modifies an array by
Q4: A string array:<br>A) Stores an actual string
Q5: Given that k is an integer array
Q6: Which of the following is false for
Q8: Which of the following best describes the
Q9: Assuming that t is an array and
Q10: (*max)(num1, num2, num3);:<br>A) Is the header for
Q11: The & operator can be applied to:<br>A)
Q12: Which of the following statements about pointer