Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 217 Bytes

File metadata and controls

4 lines (4 loc) · 217 Bytes

Arrays

type data[SIZE] = {DATA, DATA, ...} In C, arrays have to be initialized with a size, which can be inferred from the right hand side if no size is given, for example: int data[5] = {1, 2, 3, 4, 5}