home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
263_01
/
hello.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-02-15
|
311 b
|
18 lines
#include <stdio.h>
#include <c_wndw.h>
/*
* Copyright 1989, Marietta Systems, Inc.
* All rights reserved
*/
/*
* This program displays a window containing the message "hello world"
*/
void main ()
{
clr_scrn ("Hello world");
err_wndw (" hello world", 0, 0);
goodbye (0);
}