9 lines
84 B
C
9 lines
84 B
C
![]() |
int myfunc(int x)
|
||
|
{
|
||
|
return x * x;
|
||
|
}
|
||
|
|
||
|
printint(myfunc(3));
|
||
|
printint(myfunc(4));
|
||
|
|