home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / masm / masm5 / mixed / camain.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  111 b   |  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.