76. What will be the declaration of the following requirements?
(i.) An array of 10 pointers to integer named a.
(ii.) A pointer of 10 integers named p.
(A) a[10]; *p[10];
(B)**a[10]; *p[10];
(C) *a[10]; (*p)[10];
(D) *a[10] ; **p[10];
(E) (*a)[10]; *p[10];
詳解 (共 1 筆)
未解鎖
1. 題目解析 題目要求我們宣告兩個變...