Lokale Unterprogramme

int f (int x) {
  int g (int y) { return y + 1; }
  return g (g (x));
}



2015-01-26