#include <stdio.h>

/*
 * Program to show a function call inside a loop, so that the function
 * is called multiple times.
 *
 * Terry Harvey CISC 105 section 98 TA Janet
 */

void demoFcn();

int main(){

    int count = 0;

    while(count < 5){
	demoFcn();
	count++;
    }
    return 0;
}

void demoFcn(){
    printf("hey");
    return;
}
