Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rdemeter
GitHub Repository: rdemeter/so
Path: blob/master/lab1/intro-06.c
221 views
1
#include <stdio.h>
2
#include <math.h>
3
4
#define RAD (M_PI / 4)
5
6
int main (void)
7
{
8
printf ("sin = %g, cos = %g\n", sin (RAD), cos (RAD));
9
return 0;
10
}
11
12
13