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 6: Line 6:
==C library function-sqrt()==
==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.
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.

d

Revision as of 17:33, 1 November 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.

d