Year 2 compilers coureswork
/* ##answer: 220 */ int y = 5; int fun1(){ int x = 11; return x; } int main() { int x = 4; return y * x * fun1(); }