1. 程式人生 > >no.4 函數

no.4 函數

函數 ace for gap fin true buck fine utc

#include <stdio.h>
#define NAME "GIGATHINK, INC. "
#define ADDRESS "101 Megabuck Plaza"
#define PLACE "Megapois ,CA 94904"
#define WIDTH 40

void starbar();// 聲明函數原型

void main()
{
	starbar();//使用函數
	printf("%s\n",NAME);
    printf("%s\n",ADDRESS);
    printf("%s\n",PLACE);

    starbar();//使用函數


}

void starbar() //定義函數
{
	int count;

	for(count=1;count<=WIDTH;count++)
		putchar(‘*‘);
	putchar(‘\n‘);
}

  

no.4 函數