#include "header.h" float MySine (float x) { float f; f = x-x*x*x/6.0+x*x*x*x*x/120.0; // The Maclaurin polynomial of sin(x) return f; }