/* * A very simple program that prints the text * "Hello world!" to the screen. */ #include int main() { printf("Hello world!\n"); return 0; }