#include "library.h" /* How to do something 100 times: do it once then do it another 99 times How to do something 99 times: do it once then do it another 98 times How to do something 98 times: do it once then do it another 97 times ... How to do something 2 times: do it once then do it another 1 times How to do something 1 times: do it once then do it another 0 times How to do something 0 times: incorrect do it once then do it another -1 times */ void do_it_N_times(const int N) { print("I will not be late again"); new_line(); if (N != 1) do_it_N_times(N - 1); } void main() { do_it_N_times(100); }