summaryrefslogtreecommitdiff
path: root/src/temperature.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/temperature.c')
-rw-r--r--src/temperature.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/temperature.c b/src/temperature.c
deleted file mode 100644
index 747201d..0000000
--- a/src/temperature.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv) {
- float c, f;
- printf("Degrees in Celsius?\n");
- scanf("%f", &c);
-
- f = 9*c/5 + 32;
- printf("Degrees in Fahrenheit: %f\n", f);
-}