Saved Bookmarks
| 1. |
Read the following C++ statement: int AR[10] How many bytes will be allocated for this array? |
|
Answer» To store an integer 4 bytes needed so AR[10] needs 10 × 4 = 40 bytes |
|