7 lines
68 B
C++
7 lines
68 B
C++
int file1_sq_func(int);
|
|
|
|
int cpp_sq_func(int x)
|
|
{
|
|
return x * x;
|
|
}
|