Multiple Choice
Consider the declarations
Int nums[100];
Int *nPtr;
The statement ____ produces the same result as nPtr = nums;.
A) nPtr = &nums[0];
B) nPtr = nums[0];
C) nPtr = *nums[0];
D) nPtr = &nums;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: If gPtr is a pointer that points
Q2: If nums is a two-dimensional integer array,
Q4: If numPtr is declared as a pointer
Q5: Assuming grade is an array of ten
Q6: If nums is a two-dimensional integer array,
Q7: The parentheses in the pointer expression *(gPtr
Q8: If nums is a two-dimensional integer array,
Q9: The declaration char *seasons[4]; creates an array
Q10: Of the following expressions, _ is the
Q11: Any subscript used by a programmer is