Programming Language Array in C Language Question #1424
Single Choice Not Set

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

ID: #1424 Array in C Language 12,266 views
Question Info
#1424Q ID
Not SetDifficulty
Array in C LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A ptr is array of pointers to 10 integers
  • B ptr is a pointer to an array of 10 integers
  • C ptr is an array of 10 integers
  • D ptr is an pointer to array
Correct Answer

Explanation

ptr is a pointer to an array of 10 integers

Share This Question

Challenge a friend or share with your study group.