/* * "hello world" program (in the grand tradition that started with -- C!) */ #include int main(void) { printf("hello world\n"); /* print */ return 0; }