#include <stdio.h> int main (void) { char *h = "Hello!\n"; int i = 0; while (h[i]) printf ("%c", h[i++]); return 0; }