Given the array declaration, int a[20]; The last (legal) element is written as:

a)```
a[2]
```
b)```
a[0]
```
c)```
a
```
d)```
a[20]
```
e)```
a[19]
```

e) the element at 19 (declared_size –1) is the last element.

Computer Science & Information Technology

You might also like to view...

If you are in the Backstage view and want to return to a document, press ________ on the keyboard

Fill in the blank(s) with correct word

Computer Science & Information Technology

To write fixed-length records, use file open mode:

a. ios::app b. ios::ate c. ios::trunc d. ios::binary

Computer Science & Information Technology