{{keywords>wiki library source code example reference}} ===== sqrt ===== double sqrt(double); returns the square root ===== C Sourcecode Example ===== compile in linux with: gcc sqrt.c -o sqrt **-lm** -Wall #include /* including standard library */ //#include /* uncomment this for Windows */ #include /* including math library */ int main ( void ) { printf ("square root from 4.2 is %f\n", sqrt (4.2) ); return 0; } ==== output ==== output: user@host:~$ ./sqrt square root from 4.2 is 2.049390