#include<stdio.h>
int main(void)
{
int num;
num = 1;
printf("I am a simple ");
printf("computer\n");
printf("My favorite number is %d because it is first.\n" , num);
return 0;
}
include
#include<stdio.h>
int main(void)
{
printf("I will summon the butler function.\n");
butler();
printf("Yes .Bring me some tea and writeable CD-ROM.\n");
return 0;
}
void butler(void)
{
printf("You rang,sir?\n");
}
- butler()函数在程序中出现了3次。第一次出现在原型中,通知编译器要用到该函数。第二次是在main()函数中以函数调用的形式出现的。最后给出了函数的定义,即函数本身的源代码。