floating.c
changeset 8 96d16dfe787a
parent 0 af501b0c1716
child 9 c3fecc82ade6
equal deleted inserted replaced
7:a1aa30f0f904 8:96d16dfe787a
    32             printf ("COS(%d) = %3.2g = %3.2g\n", i, values[i], cos (i));
    32             printf ("COS(%d) = %3.2g = %3.2g\n", i, values[i], cos (i));
    33     }
    33     }
    34 
    34 
    35     if (values != NULL)
    35     if (values != NULL)
    36         free (values);
    36         free (values);
       
    37 
    37     return EXIT_SUCCESS;
    38     return EXIT_SUCCESS;
    38 }
    39 }