sysy-data/functional/sy/10_var_defn_func.sy

8 lines
74 B
Plaintext

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