InterviewSolution
Saved Bookmarks
| 1. |
Will the program compile? |
| Answer» C doesn't do array bounds checking at compile time, hence this compiles. But, the modern compilers like Turbo C++ detects this as 'Error: Too many initializers'. GCC would give you a warning. | |