Svein Ove Aas wrote:
> A program to do this follows for your convenience.
>
> ----
> #include <stdio.h>
>
> int main() {
> int i;
> for (int i=0; i<3; i++)
> puts("Hello\0");
This will have the same effect as puts("Hello").
Maybe putchar(0) will actually output the NUL.
Zun.