diff options
Diffstat (limited to 'sintest.c')
| -rw-r--r-- | sintest.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sintest.c b/sintest.c new file mode 100644 index 0000000..aa9d4b0 --- /dev/null +++ b/sintest.c @@ -0,0 +1,9 @@ +#include <math.h> +#include <stdio.h> + +int main() +{ + printf("Sine of 90 degrees is %f",sin(90)); + return 0; + +} |
