rustic-sysy/sysy_sets/10_var_defn_func.sy

8 lines
74 B
Plaintext
Executable File

int defn(){
return 4;
}
int main(){
int a=defn();
return a;
}