home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / usoftpd.zip / CAMAIN.C < prev    next >
C/C++ Source or Header  |  1987-07-31  |  111b  |  9 lines

  1.  
  2. extern int Power2(int,int);
  3.  
  4. main()
  5. {
  6.     printf("3 times 2 to the power of 5 is %d\n", Power2(3,5));
  7. }
  8.  
  9.