Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 197 Bytes

34.md

File metadata and controls

24 lines (20 loc) · 197 Bytes

题目:练习函数调用。

#include<stdio.h>

void hello()
{
	printf("Hello world!\n");
}

void f()
{
	for (int i = 0; i < 5; ++i)
	{
		hello();
	}
}

int main()
{
	f();

	return 0;
}