NAME
sqrt
- Square root
SYNTAX
float sqrt(float
f
);
or
int sqrt(int
i
);
DESCRIPTION
Return the square root of f, or in the second case, the square root truncated to the closest lower integer.
KEYWORDS
float
and
int
SEE ALSO
pow
,
log
,
exp
and
floor