Listing 11

#include <stdio.h>

#define STACK_SIZE 4

static int stack[STACK_SIZE];

static size_t stack_ptr1 = 0;
static size_t stack_ptr2 = STACK_SIZE - 1;

/* End of file */