<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/23126610?origin\x3dhttp://whatistheurlofthisblog.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Wednesday, May 10, 2006

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:

#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