What will be the declaration of the variable ptr as the pointer to array of 6 floats?

a) float *ptr[6]
b) float [6]*ptr
c) float(*ptr)[6]
d) float(*ptr)(6).

1 thought on “What will be the declaration of the variable ptr as the pointer to array of 6 floats?”

Leave a Comment