InterviewSolution
Saved Bookmarks
| 1. |
What is meant by unsized array initialization in C++? What are its benefits? |
|
Answer» Unsized array initialization means skip the size of the array I an initialization statement. The C++, then automatically creates an array big enough to hold all the initializers present and calculates the dimensions of unsized arrays. Example: char S1 [ ] = “First String”; Advantages:
|
|