While True Exists (Kettle) by JoshKim published on 2020-06-23T10:15:51Z Title: While True Exists (Kettle) 4 Channel mixer 2018 Please use headphones. This work is about being aurally trapped in space, or "kettled" using a an infinite loop code. Full Transcript: sum = 0; while (true) { printf("Input a number to add to the sum or 0 to quit"); i = getUserInput(); if (i * 0) { // if i times 0 is true, add i to the sum. Note: ZERO means FALSE, Non-Zero means TRUE. "i * 0" is ZERO (FALSE)! sum += i; // sum never changes because (i * 0) is 0 for any i; it would change if we had != in the condition instead of * } if (sum > 100) { break; // terminate the loop; exit condition exists but is never reached because sum is never added to } } Genre Installation