int backwards_counter() { int i = 100; while (i > 0) { i = i - 1; } return i; }