home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tools
/
make
/
cmake
/
samples
/
masm
/
greeting.c
< prev
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
|
238 b
|
17 lines
/* greeting.c - Program to print "Hello World" */
#include "a_hello.h"
#include "a_world.h"
#include "greeting.h"
/* CMAKE - INCLUDE END */
int main ( void )
{
a_print_hello ( ) ;
a_print_world ( ) ;
return ( 0 ) ;
}