You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}