#include<stdio.h>

/**
 * Terry Harvey CIS 105 Section 010 TA Tina Weymouth
 *  Demonstration program
 **/
void f(int test);
int main(){

    int i = 7;

    f(i);
    printf("i is %d\n", i);
    return 0;

}

void f(int test){
    printf("test is %d\n", test);
    test++;
    printf("test is %d\n", test);
    return;
}

