You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
246 B
24 lines
246 B
17 years ago
|
#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);
|
||
|
}
|
||
|
|