Multiple Choice
A pointer can not be assigned to:
A) Another pointer of the same type without using the cast operator.
B) A pointer to void without using the cast operator.
C) A pointer of a type other than its own type and void without using the cast operator.
D) Any other pointer by using the cast operator.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Comparing pointers and performing pointer arithmetic on
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)