/* * "hello world" program: * print "hello world" to "the screen" */ #include int main(void) { printf("hello, world\n"); return 0; }