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.
21 lines
195 B
21 lines
195 B
3 years ago
|
#include "head.h"
|
||
|
|
||
|
int foo(int x){
|
||
|
//return 2*x;
|
||
|
}
|
||
|
|
||
|
int foo1(int x){
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
int foo2(int x){
|
||
|
return x*x;
|
||
|
}
|
||
|
|
||
|
int main(){
|
||
|
int x = foo(1);
|
||
|
int y = foo1(1);
|
||
|
int z = foo2(1);
|
||
|
return 0;
|
||
|
}
|