InterviewSolution
Saved Bookmarks
| 1. |
Which among the following is referred as an array of pointers?(a) int *p;(b) int (*)p;(c) int p[4];(d) int*[4] p;The question was asked in an interview.This interesting question is from Unsafe code & Pointers Basics in section Miscellaneous topics of C# |
|
Answer» CORRECT option is (d) INT*[4] P; For EXPLANATION: None. |
|