C语言如何调用函数
Admin | 2007-12-29 18:58:05 | 被阅次数 | 17836
本教程,我们来学习,如何调用C语言中的函数
程序源代码:
#include <stdio.h>
void hello_world(void)
{
printf("Hello, world!\n");
}
void three_hellos(void)
{
int counter;
for (counter = 1; counter <= 3; counter++)
hello_world();/*调用此函数*/
}
void main(void)
{
three_hellos();/*调用此函数*/
}