sysy/hidden_functional_c/sy/06_func_name.sy

9 lines
67 B
Plaintext

int f() {
return 10;
}
int main() {
int f = 20;
return f;
}