/* compile cc testm.c -lc to link standard math library */ double sqrt(); main() { double x,y,z; x = 100.00; y = sqrt(x); printf ("\ny: %f %f", y, x); }