|
|
1.1 root 1: /*
2: * Test of debugging arrays in C.
3: */
4:
5: int a[10], *b;
6:
7: p (i, a, j)
8: int i, a[], j;
9: {
10: a[3] = i;
11: a[4] = j;
12: }
13:
14: main ()
15: {
16: int i;
17:
18: b = a;
19: for (i = 0; i < 10; i++) {
20: a[i] = i;
21: }
22: p(4, a, 5);
23: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.