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

expect-1 « t4109 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1db5ff10501497459d07e227f02764576a6010e1 (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
25
26
27
28
29
30
31
#include <stdlib.h>
#include <stdio.h>

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

int main() {
	int i;

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

	print_ln();

	return 0;
}

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

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

void print_ln() {
	printf("\n");
}