Digital Electronics - Engineering

Q1:

Which of the following correctly declares a pointer to an array of intergers in C?

A int * P [20]

B int * P

C int (* P) [20]

D int * (P [20])

ANS:C - int (* P) [20]

No answer description is available.