#include <math.h>

mathfunc( x )
     double x;
{
    printf("sin(%lf)= %lf\n", x, sin(x));
}
