Multiple Choice
Comparing pointers and performing pointer arithmetic on them is meaningless unless:
A) They point to elements of the same array.
B) You are trying to compare and perform pointer arithmetic on the values to which they point.
C) They point to arrays of equal size.
D) They point to arrays of the same type.
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
Q7: Which of the following is false about
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)