/*- Author: Brian Tiffin Dedicated to the public domain Date started: May 2017 Modified: 2018-06-18/17:52-0400 btiffin Tectonics: nickle tightloop-nickle.c5 +*/ /* Sum of values from 0 to 16777216 */ int total = 0; int n = 1 << 24; for (int i = n; i > 0; i--) { total += i; } printf("%g\n", total);