C Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 2)
2.
What does the following declaration mean?
int (*ptr)[10];
ptr is array of pointers to 10 integers
ptr is a pointer to an array of 10 integers
ptr is an array of 10 integers
ptr is an pointer to array
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
64 comments Page 6 of 7.

Ganesh said:   1 decade ago
*ptr is a pointer and[10] is array declarations.

Ishtha said:   7 years ago
I can't get your points. Explain more please.

Teja said:   5 years ago
ptr is a pointer which points an array.
(2)

Rupa said:   6 years ago
Could you please explain the question?

JAY said:   6 years ago
Could you please explain the question.

Chotu said:   9 years ago
Explain the answer of this question.

Purna chandra said:   1 decade ago
Yes p is pointer of 10 integers.

Neha said:   1 decade ago
Can you explain me the concept?

Balaji said:   1 decade ago
Can you explain me the concept?

Sagar Said said:   2 decades ago
Can you explain me the concept


Post your comments here:

Your comments will be displayed after verification.