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
270 B

#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;
}