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