home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / utilities / utilsd / dataaof / Example / c / example
Text File  |  1995-07-03  |  99b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. extern char *somedata;
  4.  
  5. int main ()
  6. {
  7.     printf ("%s\n", somedata);
  8.     return 0;
  9. }
  10.