Bill Gunshannon wrote: > Am I the only one who things this was fat fingered and the example > should really be: if ((atoi (date_string) + 5) > 2020) If that was intended, why not write it as if (atoi (date_string) > 2015) > I would have expected the original to generate an error at compile > time. <https://onlinegdb.com/BydFQVPCD>