InterviewSolution
Saved Bookmarks
| 1. |
Assuming int is of 4bytes, what is the size of int arr[15];?(a) 15(b) 19(c) 11(d) 60The above asked question is from Array and Array Operations topic in chapter Abstract Data Types of Data Structures & Algorithms IThe question was posed to me by my college professor while I was bunking the class. |
|
Answer» RIGHT CHOICE is (d) 60 Best explanation: Since there are 15 int elements and each int is of 4bytes, we get 15*4 = 60bytes. |
|