home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / c2local / example / hello.c < prev    next >
C/C++ Source or Header  |  1977-12-31  |  122b  |  12 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. char *p="This is a short text";
  6.  
  7. main()
  8. {
  9.    puts("Hello world!");
  10.    puts(p);
  11. }
  12.