标签:class tar 题目 targe clu www for code include
题目:练习函数调用。
程序分析:无。
实例:
1 #include <stdio.h> 2 void hello_world(void) 3 { 4 printf("Hello, world!\n"); 5 } 6 void three_hellos(void) 7 { 8 int counter; 9 for (counter = 1; counter <= 3; counter++) 10 hello_world();/*调用此函数*/ 11 } 12 int main(void) 13 { 14 three_hellos();/*调用此函数*/ 15 }
以上实例输出结果为:
Hello, world! Hello, world! Hello, world!
感谢你的阅读,请用心感悟!希望可以帮到爱学习的你!!分享也是一种快乐!!!请接力。。。
标签:class tar 题目 targe clu www for code include
原文地址:https://www.cnblogs.com/kangyifan/p/13054148.html