home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tools
/
make
/
cmake
/
samples
/
if
/
greeting.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-11-16
|
203 b
|
16 lines
/* greeting.c - Program to print "Hello World" */
#include "hello.h"
#include "world.h"
#include "greeting.h"
int main ( void )
{
print_hello ( ) ;
print_world ( ) ;
return ( 0 ) ;
}