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

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

int func(int num);
int func2(int num);

int main() {
	int i;

	for (i = 0; i < 10; i++) {
		printf("%d", func(i));
		printf("%d", func3(i));
	}

	return 0;
}

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

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