Skip to content

Instantly share code, notes, and snippets.

@therealjasonkenney
Created July 7, 2014 19:11
Show Gist options
  • Select an option

  • Save therealjasonkenney/6165e2cc3644dd08d37d to your computer and use it in GitHub Desktop.

Select an option

Save therealjasonkenney/6165e2cc3644dd08d37d to your computer and use it in GitHub Desktop.
# include <stdio.h>
#
#
int main(void) {
float a = 0.4;
float b = 0.5;
float c = 0.1;
float d = b - a - c;
printf("%f", d);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment