Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 295 Bytes

arrays_ii.md

File metadata and controls

10 lines (8 loc) · 295 Bytes

Arrays II

Fairly often you will want to have arrays in your program which you either do not know the initial values for or which are too big to physically type out every value in an initializer.

String[] everyStudentName = // ???
char[] everyLetterInEveryAlphabet = // ???