static int x = 15; int f() { static int x = 17; return x++; } int g() { static int x = 19; return x += 14; } int h() { return x += 27; }