/* forLoopDemo.c  P. Conrad 09/30/05
   Demonstrate writing a line of stars with a for loop */


#include <stdio.h>

int main(void)
{

  printf("*******************************************\n");
  printf("         Welcome to my program             \n");
  printf("*******************************************\n");

  return 0;
}

