// lethead1.c
#include <stdio.h>
const char* NAME = "GIGATHINK, INC";
const char* ADDRESS = "101 Megabuck Plaza";
const char* PLACE = "Megapolis, CA 94904";
const int WIDTH = 40;

// prototype of the function
void starbar(void);

int main(void)
{
	starbar();
	printf("%s\n", NAME);
	printf("%s\n", ADDRESS);
	printf("%s\n", PLACE);
	// use the function
	starbar();
	return 0;
}

// define the function
void starbar(void)
{
	int count;
	
	for (count = 1; count <= WIDTH; count++)
		putchar('*');
	putchar('\n');
}

	
