/* * ===================================================================================== * * Filename: trig_math.h * * Description: * * Version: 1.0 * Created: 04/02/24 07:37:55 PM IST * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef __TRIG_MATH__ #define __TRIG_MATH__ #define PI 3.142 double sine(double x); double cosine(double x); #endif