home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / masm / masm6 / mixed / cmain.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-03  |  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.