home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
-
- static char *h = "Hello World Hello World Hello World";
-
- int
- main ()
- {
- int l = strlen (h);
-
- setvbuf (stdout, 0, _IOFBF, 16);
- fwrite (h, 1, l, stdout);
- putchar ('\n');
- fputs (h, stdout);
- putchar ('\n');
- puts (h);
- return 0;
- }
-