home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / aoflib_2 / Example / c / program2 < prev   
Encoding:
Text File  |  1996-06-20  |  122 b   |  12 lines

  1. /* program.c */
  2.  
  3. #include <stdio.h>
  4.  
  5. /* define prototypes for the functions */
  6. void area(void);
  7.  
  8. int main()
  9. {
  10.   area();
  11. }
  12.