Match statements and their meanings.
Arrays
Meanings of statements
Report a typo
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
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.