/* * File: hello.c * ------------- * This program prints the message "Hello, world." * on the screen. The program is taken from the * classic C reference text "The C Programming * Language" by Brian Kernighan & Dennis Ritchie. */ #include #include "genlib.h" main() { printf("Hello, world.\n"); }