index
:
c-homework
master
montecarlo
numrep
sin-sum
task3
task4
task5
task6
task7
task8
Computer science homework for MSU
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libs
/
libsin.c
blob: 34200afaad9507364251664bee9fbe03f158bfef (
plain
)
1
2
3
4
5
6
7
#include
<math.h>
// calculate sine
double
f
(
double
x
)
{
return
sin
(
x
);
}