The list of methods to do sqr are organized into topic(s).
double
sqr(double x) Returns square of specified number.
return (x * x);
int
sqr(int V) Returns the square of a number.
return V * V;
int
sqr(int x) Returns the square of the specified integer.
return x * x;
int
sqr(int x) Calculate a square of a number
return x * x;