Open overjjjj opened 3 years ago
void hello_world(void) { printf("hello,world\n"); } void three_hello(void) { int counter; for (counter = 1; counter <=3;counter++) hello_world(); } int main(void) { three_hellos(); }
void hello_world(void) { printf("hello,world\n"); } void three_hello(void) { int counter; for (counter = 1; counter <=3;counter++) hello_world(); } int main(void) { three_hellos(); }
练习函数调用