I have been trying to take the square root of a number by doing this:

Code:
a = Sqr(25);
And

Code:
a = Sqrt(25);
I get the following error:error C2065: 'Sqr' : undeclared identifier

and error C2065: 'Sqrt' : undeclared identifier....

What is wrong?