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
8
Releases
0
Wiki
Year 2 compilers coureswork
Tree:
db96312cee
Branches
Tags
master
compilers
/
tac
/
simple.c
simple.c
78B
History
Raw
1
2
3
4
5
6
7
int main() {
int z = 5;
int y = 5 + 2;
int x = 5 + y * z;
return x;
}