home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
POW.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1985-01-24
|
202 b
|
13 lines
main() /* pow.c -- illustrates pow() */
{
double a,b,c;
a = 2;
b = 5;
c = pow(a,b);
printf("%g\n",c);
printf("Correct answer is 32.000000\n");
/* Result: pow yields a to the b */
}