Year 2 compilers coureswork

simple_BASE_41992.c 93B

1234567
  1. int times(int x, int y) {
  2. return x * y;
  3. }
  4. int main() {
  5. return times(4+5, times(2, 4));
  6. }