#include <stdio.h>
int
main (
void
)
{
char
msg[] =
"This is a test"
;
i = 0;
while
( msg[i] )
fputchar ( msg[i] );
i++;
}
return
0;