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