7 lines
57 B
C
7 lines
57 B
C
|
int square(int num);
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
return square(0);
|
||
|
}
|