A song that goes on and on forever
Of course, such a song's lyrics cannot be typed out in full, so I'll have to type them in C code:
Try it out at your local C/C++ compiler. ;-)
Tero
#include<stdio.h>
void main()
{for(;;){
printf("This is the song that has no end\n");
printf("It just goes on and on, my friend\n");
printf("Some people started singing it not knowing what it was.\n");
printf("Now they’ll continue singing it forever just because...\n");
}
}
Try it out at your local C/C++ compiler. ;-)
Tero