home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
power.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
579b
|
28 lines
/*--------------------------------------*/
/* */
/* POWER(X,X) */
/* */
/* Functionality: */
/* Exponential calculations. */
/* Arguments: */
/* 0: The base number */
/* 1: The mantissa */
/* Returns: An integer result of the */
/* calculation. */
/* Author: John Callicotte */
/* Date created/modified: 09/01/88 */
/* */
/*--------------------------------------*/
power(a,b)
int a,b;
{
int d,j;
d=1;
if (b){ /* Check for 0 mantissa. */
for (j=0;j<b;j++)
d*=a;
}
return(d);
}