Skip to content

Instantly share code, notes, and snippets.

@cenit
Created June 23, 2015 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cenit/0742da40f340ac3dbfb8 to your computer and use it in GitHub Desktop.
Save cenit/0742da40f340ac3dbfb8 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
int main() {
float i;
for (i=0; i < M_PI; i+=0.1) printf ("sin(%f) = %f\n", i, sin(i));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment