#include #include int main(){ int i; float x; float k; k=2*M_PI/100; x=0; for(i=0; i<100; i++){ printf("sin(%f)=%f\n",x,sin(x)); x+=k; } }