#include <stdio.h>

/* Terry Harvey CISC105 Section TA*/

/* Sample program for looking at function calls on the stack */
/* Why do these functions and variables have names that lack meaning? */

/* DO NOT print the values of the variables, only the addresses. */

void a();
void b();
void c();
int main(){

    int alpha = 5;
    int beta = 5;
    a();
    return 0;
}

void a(){
    int alpha = 5;
    int beta = 5;
    b();
    return;
}

void b(){
    int alpha;
    int beta = 5;
    c();
    return;
}

void c(){
  int alpha, beta;
  return;
}
