Please enable JavaScript in your browser!
Home
Esplora
Aiuto
Accedi
Matt
/
compilers
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Commit
4
Rilasci
0
Wiki
Year 2 compilers coureswork
Albero (Tree):
ea320f604c
Rami (Branch)
Tag
master
compilers
/
cw
/
tests
/
func_call.c
func_call.c
81B
Cronologia
Originale
1
2
3
4
5
6
7
8
9
10
int foo() {
return 5;
}
int main() {
int x = foo() + 3;
return x % 17;
}