13 Feb
2008
13 Feb
'08
12:10 a.m.
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.