/* This program illustrates an endless loop. */ int main() { /* Simply loop forever. Bad because it eats up CPU. */ while (1); return 0; }