source:
CIVL/mods/dev.civl.abc/examples/parse/c11_6.7.9.25.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 273 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 1 | /* From C11 Sec. 6.7.9.25: |
| 2 | * | |
| 3 | * EXAMPLE 2 The declaration | |
| 4 | * | |
| 5 | * int x[] = { 1, 3, 5 }; | |
| 6 | * | |
| 7 | * defines and initializes x as a one-dimensional array object that | |
| 8 | * has three * elements, as no size was specified and there are three | |
| 9 | * initializers. | |
| 10 | */ | |
| 11 | int x[] = { 1, 3, 5 }; |
Note:
See TracBrowser
for help on using the repository browser.
