This website requires JavaScript.
Explore
Help
Register
Sign In
compiler
/
sysy-data
Watch
4
Star
0
Fork
You've already forked sysy-data
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
main
sysy-data
/
functional
/
sy
/
09_func_defn.sy
12 lines
105 B
Plaintext
Raw
Permalink
Blame
History
int a;
int func(int p){
p = p - 1;
return p;
}
int main(){
int b;
a = 10;
b = func(a);
return b;
}
Reference in New Issue
View Git Blame
Copy Permalink