You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
224 B

#include <math.h>
#include <stdio.h>
#include <stdlib.h>
int
main(int argc, char **argv)
{
double x;
if (argc > 1)
x = atof (argv[1]);
else
x = 3;
x = sin (x);
if (x > 0)
printf("OK\n");
return 0;
}