/* P. Conrad, 9/26/05, printStarExample.c Demonstrate the use of
   functions to print a line of stars.  I will also use it to
   demonstrate what happens when you mispell a function name */

#include <stdio.h>

void printStars(void)
{
  printf("***************************************\n");
}

int main(void)
{
  printDecorativeLine();
  printf("*     WELCOME TO MY PROGRAM!!!        *\n");
  printDecorativeLine();
  
  printf("\n\n\n");
  
  printDecorativeLine();
  printf("*       I hope you enjoyed it!!!      *\n");
  printDecorativeLine();
  
  return 0;
  
}














