#include <stdio.h>
int
main (
void
)
{
char
msg[] =
"Hello world"
;
i = 0;
while
( msg[i] )
fputc
( msg[i], stdout );
i++;
}
return
0;