added subdir kill
[tridge/junkcode.git] / stack.c
1
2 void r(int depth)
3 {
4         int x = depth;
5         printf("depth=%d &x=%p\n", depth, &x);
6
7         if (depth == 0) return;
8         r(depth-1);
9 }
10
11 main()
12 {
13         r(100);
14 }