All pastes #2079941 Raw Edit

Stuff

public text v1 · immutable
#2079941 ·published 2011-09-05 11:29 UTC
rendered paste body
#include <stdio.h>

int main(int argc, char *argv[])
{
    int fahr;
    
    while ((fahr = getchar()) != EOF){
          putchar(fahr);
          printf("%f", (5.0/9.0) * (fahr-32));
    }
}