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