1 2 3 4 5 6 7 8 9 10 11
#include <stdio.h> #include <stdlib.h> #include <math.h> int main (int argc, char **argv) { int d = atoi (argv[1]); printf ("%f\n", sin (d)); return 0; }