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