Files
2024-02-04 20:19:52 +05:30

28 lines
547 B
C

/*
* =====================================================================================
*
* 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