InterviewSolution
Saved Bookmarks
| 1. |
Which of the following gives the memory address of the first element in array tan?(a) tan[0](b) tan(c) &tan(d) tan [1]This question was posed to me in exam.This key question is from Array Reference topic in section Syntax Directed Definition and Translations of Compiler |
|
Answer» RIGHT option is (b) tan Explanation: The base ADDRESS of the ARRAY is GIVEN by its NAME. |
|