#include #include #include #include int main (int argc, char **argv) { float x = strtof(argv[1], NULL); printf("input %s, interpreted as %19.17f\n", argv[1], x); printf("%19.17f\n", sqrtf(x)); assert( (x != 0.0f && sqrtf(x) != 0.0f) || (x == 0.0f && sqrtf(x) == 0.0f) ); return 0; }