Random Quote

"Most of my poems are written in haste, and therefore resultantly lacking in taste. Yet people who read them and think they are fine, must surely have taste just as rotten as mine." From "B.C Right On" by Johnny Hart

Found it here http://rfte.blogspot.com/

A poem in C

/***********************************************************/
/* Short Poem */
/***********************************************************/

#include

/***********************************************************/

main () /* Poem */

{
printf ("Astronomy is %dderful \n",1);
printf ("And interesting %d \n",2);
printf ("The ear%d volves around the sun \n",3);
printf ("And makes a year %d you \n",4);
printf ("The moon affects the sur %d heard \n",5);
printf ("By law of phy%d great \n",6);
printf ("It %d when the the stars so bright \n",7);
printf ("Do nightly scintill%d \n",8);
printf ("If watchful providence be%d \n",9);
printf ("With good intentions fraught \n");
printf ("Should not keep up her watch divine \n");
printf ("We soon should come to %d \n",0);
}

Guess what the output is of the above c code, click on the 'comment' to find out.