|
|
1.1 root 1: main() {}
2:
3: memchar() {
4: char x, *p;
5:
6: &x, &p;
7: x = *p++;
8: x = *++p;
9: x = *p--;
10: x = *--p;
11: }
12:
13: memint() {
14: int x, *p;
15:
16: &x, &p;
17: x = *p++;
18: x = *++p;
19: x = *p--;
20: x = *--p;
21: }
22:
23: regchar() {
24: register char x, *p;
25:
26: x = *p++;
27: x = *++p;
28: x = *p--;
29: x = *--p;
30: }
31:
32: regint() {
33: register int x, *p;
34:
35: x = *p++;
36: x = *++p;
37: x = *p--;
38: x = *--p;
39: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.