Name: 2009-08-18 10:35
Output a thousand Sussmen in an individualistic way.
/* Sussmen.c
*
* Copyright (C) 2009 Frozen-Void frozenvoid@gmail.com
*
* If you use this C prog. for your own use then you must credit me.
*
*/
#include "void.h" /* handles all the common functions,#defines,#ifdefs and #includes */
vd main() {FILE *fp;char *sussman="Sussman";int i;
for(i=0;i<1000;i++){printf("%s\n",sussman);}return 0;}