How to make Makefile?

This commit is contained in:
2024-02-04 20:19:52 +05:30
parent ebafca3461
commit dee48d5d1b
8 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/*
* =====================================================================================
*
* 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