Meanings of statements

Report a typo

Match statements and their meanings.

Match the items from left and right columns
int numbers[];
int numbers[] = { 1, 2, 3 };
int numbers[4] = { 1, 2, 3 };
int numbers[3] = { 1, 2, 3 };
declaration and initialization (the size is determined automatically)
declaration
declaration and partial initialization of an array of a given size
declaration and full initialization of an array of a given size
___

Create a free account to access the full topic