double_sqrt.c 143 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 ////C: '-msoft-fp-double' #include <math.h> //double sqrt(double x); int main(void) { volatile double a, z; z = sqrt(a); return 0; }