Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
Matt
/
compilers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Commits
4
Releases
0
Wiki
Year 2 compilers coureswork
Tree:
ea320f604c
Branches
Tags
master
compilers
/
cw
/
tests
/
func_call.c
func_call.c
81B
History
Raw
1
2
3
4
5
6
7
8
9
10
int foo() {
return 5;
}
int main() {
int x = foo() + 3;
return x % 17;
}