你好世界。。。

//练习函数调用
//程序分析
#include
void hello_world(void)
{
 printf("Hello,world!\n);
}
void three_hellos(void)
{
 int counter;
 for(counter=1;counter<=3;counter++)
  hello_world();/*调用此函数*/}
void main()
{
 three_hellos();/*调用此函数*/
 return 0;
}

你可能感兴趣的:(你好世界。。。)