rftoc.c
contents ::
  address.c
  atquick_sort.c
  bits.c
  countspace.c
  ctof.c
  hextoint.c
  hist.c
  indexof.c
  itob.c
  linkage.c
  lzw.c
  maxval.c
  merge.c
  merge_sort.c
  peof.c
  pointer.c
  quick2.c
  quick.c
  quick_sort.c
  reverse.c
  rftoc.c
  rmultiblank.c
  rtabs.c
  squeeze.c
  structoo.c
  syscall.c
  tempfunc.c
  tfc.c
  word.c

#include <stdio.h>

main(){
  float fahr, celsius;
  int start, step, end;

  start = 300;
  step = 20;
  end = 0;

  for(fahr = start; fahr >= end; fahr = fahr - step){
    celsius = (5.0/9.0)*(fahr-32);
    printf("%3.0f %6.1f\n", fahr, celsius);
  }
}

James Little