home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* Print 'Hello' in the middle of 80x25 screen */
- /************************************************************************/
-
- print_hello()
- {
- clear_screen();
- write_string(12, 40, "Hello"); /* Display a string */
- }