Please enable JavaScript in your browser!
Página inicial
Explorar
Ajuda
Entrar
Matt
/
compilers
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull Requests
0
Commits
5
Versões
0
Wiki
Year 2 compilers coureswork
Tree:
dc825ca537
Branches
Tags
master
compilers
/
cw
/
tests
/
func_call.c
func_call.c
81B
Histórico
Raw
1
2
3
4
5
6
7
8
9
10
int foo() {
return 5;
}
int main() {
int x = foo() + 3;
return x % 17;
}