8 lines
65 B
Plaintext
8 lines
65 B
Plaintext
int f(int f) {
|
|
return f * 2;
|
|
}
|
|
|
|
int main() {
|
|
return f(10);
|
|
}
|