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