/* the traditional hello world program */ #include int main(int argc, char *argv[]) { printf("Hello, world.\n"); exit(EXIT_SUCCESS); }