InterviewSolution
Saved Bookmarks
| 1. |
Which of the following correctly declares an array?(a) Int array[ 10](b) int array(c) array{10}(d) array array[ 10]The question was posed to me in unit test.Question is from Array Reference in chapter Syntax Directed Definition and Translations of Compiler |
|
Answer» The correct CHOICE is (a) INT array[ 10] |
|