Q:

Comment on the below statements with respect to A and B

0

Comment on the below statements with respect to A and B

int *a1[8];

int *(a2[8]);
  1. Array of pointers
  2. Pointer to an array

  1. a1 is A, a2 is B
  2. a1 is B, a2 is A
  3. a1 is A, a2 is A
  4. a1 is B, a2 is B

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

a1 is A, a2 is A

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Syntax of accessing the seventh element... >>
<< The maximum number of dimension an array can have ...