This is where my issue is coming from
// TODO: Calculate number of years until we reach threshold int n = start; int years = 0; while (start < end) { n = n + (n / 3) - (n / 4); years++; } // TODO: Print number of years printf("Years: %i/n", years); } Something seem to be wrong but I can't figure it out. It compiling all code except the "Years". I'm not getting an answer after the division. Please help