Jump to content

User:Varshajoshi36/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
No edit summary
Line 4: Line 4:
==C library function-sqrt()==
==C library function-sqrt()==
sqrt() is a function in the c standard library, declared in the header file math.h. sqrt() reads number and returns non negative square root of the number. If the number given is negative,a domain error occurs and [[NaN]] is returned.
sqrt() is a function in the c standard library, declared in the header file math.h. sqrt() reads number and returns non negative square root of the number. If the number given is negative,a domain error occurs and [[NaN]] is returned.
==C library function-sqrt()==
sqrt()[stands for square root is a function in the [[c standard library]], declared in the header file math.h. sqrt() reads number and returns non negative square root of the number.

Revision as of 11:05, 18 September 2011

C library function-sqrt()

sqrt() is a function in the c standard library, declared in the header file math.h. sqrt() reads number and returns non negative square root of the number. If the number given is negative,a domain error occurs and NaN is returned.

C library function-sqrt()

sqrt()[stands for square root is a function in the c standard library, declared in the header file math.h. sqrt() reads number and returns non negative square root of the number.