700+ câu trắc nghiệm Ngôn ngữ lập trình C có đáp án - Phần 14

What does the following declaration mean? int (*ptr)[10];

23/25

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

Giải thích

Chọn đáp án A