# 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}```