overjjjj / c-

0 stars 0 forks source link

实例12 #12

Open overjjjj opened 3 years ago

overjjjj commented 3 years ago

练习函数调用

overjjjj commented 3 years ago

include

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(); }

overjjjj commented 3 years ago

include

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(); }