sysy/functional_c/sy/10_var_defn_func.sy

9 lines
75 B
Plaintext

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