#include <stdio.h>
#include <math.h> /* needed by sqrt() */
int main(void)
{
double answer;
answer = sqrt(100.0);
printf("%f", answer);
return 0;
}
#include <math.h> /* needed by sqrt() */
int main(void)
{
double answer;
answer = sqrt(100.0);
printf("%f", answer);
return 0;
}
0 comments:
Post a Comment