source:
CIVL/examples/modelbuilder/extern_array_complete_later-bad.c@
e2570cd
| Last change on this file since e2570cd was 9ed20ab1, checked in by , 18 months ago | |
|---|---|
|
|
| File size: 113 bytes | |
| Line | |
|---|---|
| 1 | #include <assert.h> |
| 2 | int a[]; |
| 3 | int a[] = {1, 2}; |
| 4 | int main(void) { |
| 5 | assert(a[0] == 1 && a[1] == 2 && a[2] == 3); |
| 6 | } |
Note:
See TracBrowser
for help on using the repository browser.
