/* * hello-world.c */ #include int main(int argc, char *argv[]) { int the_answer = 42; printf("hello world\n"); printf("the answer is %d\n", the_answer); }