/* From C11 Sec. 6.7.9.25:
 *
 * EXAMPLE 2 The declaration
 *
 * int x[] = { 1, 3, 5 };
 *
 * defines and initializes x as a one-dimensional array object that
 * has three * elements, as no size was specified and there are three
 * initializers.
 */
int x[] = { 1, 3, 5 };
