Skip to content

Instantly share code, notes, and snippets.

@freespace
Created June 4, 2014 19:48
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 freespace/9f61fee5495906546d36 to your computer and use it in GitHub Desktop.
Save freespace/9f61fee5495906546d36 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
float f = 16777210;
int cnt;
for (cnt =0; cnt < 15; ++cnt) {
printf("cnt=%d\tf=%f\n", cnt, f+cnt);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment