home *** CD-ROM | disk | FTP | other *** search
- main() /* sqrt.c -- squares two numbers */
-
- {
-
- double x;
- double result;
-
- x = 9;
-
- result = sqrt(x);
- printf("%.f is the square root of %.f\n", result, x);
- result = sqrt(result);
- printf("%.17f is the square root of %.f", result, sqrt(x));
- }