1### Compilation failed:
2
3error: 5: potential recursion (function call cycle) not allowed:
4 bool is_odd(int n)
5 bool is_even(int n)
6 bool is_odd(int n)
7bool is_odd (int n) { return n == 0 ? false : is_even(n - 1); }
8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
91 error
10