int
add(
int
*pin,
int
number)
{
int
k, sum=0;
for
(k=0;k<
number;k
++) sum=
sum+pin
[k]*pin[k];
}