InterviewSolution
Saved Bookmarks
| 1. |
Pick the incorrect statement about Character-Array.(a) Character-Array can be terminated by a null character(‘’)(b) Character-Array has a static size(c) Character-Array has a dynamic size(d) Character-Array has a threat of array-decay |
|
Answer» Right choice is (c) Character-Array has a dynamic size Easy explanation - As Character-Array is an array, its size should be defined during its declaration hence the size of Character-Array is static. A Character-Array is not necessarily to be terminated by a null character. Also, it has a threat of array-decay. |
|