Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expect-2 « t4109 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc52924112ba857784169157d3f650eb35a931ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>

int func(int num);
void print_int(int num);

int main() {
	int i;

	for (i = 0; i < 10; i++) {
		print_int(func(i));
	}

	return 0;
}

int func(int num) {
	return num * num;
}

void print_int(int num) {
	printf("%d", num);
}