home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day21
/
calc.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-05-21
|
122b
|
10 lines
/* Module containing calculation functions. */
#include "calc.h"
long sqr(int x)
{
return ((long)x * x);
}