sysy/hidden_functional_c/sy/05_param_name.sy

8 lines
65 B
Plaintext

int f(int f) {
return f * 2;
}
int main() {
return f(10);
}