home *** CD-ROM | disk | FTP | other *** search
/ For Beginners & Professional Hackers / cd.iso / softcrc / masm / masm.610 / disk3 / samples / mixed / cmain.c$ / CMAIN
Encoding:
Text File  |  1992-11-12  |  234 b   |  12 lines

  1. /* Power2 procedure is in C.ASM  */
  2. /* Compile with CL cmain.c c.obj */
  3.  
  4. #include <stdio.h>
  5.  
  6. extern int Power2( int factor, int power );
  7.  
  8. void main()
  9. {
  10.     printf( "3 times 2 to the power of 5 is %d\n", Power2( 3, 5 ) );
  11. }
  12.