Skip to content

Instantly share code, notes, and snippets.

@Rahajustone
Created February 24, 2014 23:46
Show Gist options
  • Save Rahajustone/9199715 to your computer and use it in GitHub Desktop.
Save Rahajustone/9199715 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(void) {
int c,f;
for(f=0;f<=300;f=f+20) {
c=5*(f-32)/9;
printf("%d\t%d\n",f,c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment