aboutsummaryrefslogtreecommitdiff
path: root/ch1/1-03_temp-table-header.c
diff options
context:
space:
mode:
Diffstat (limited to 'ch1/1-03_temp-table-header.c')
-rw-r--r--ch1/1-03_temp-table-header.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ch1/1-03_temp-table-header.c b/ch1/1-03_temp-table-header.c
index d0d069c..682712f 100644
--- a/ch1/1-03_temp-table-header.c
+++ b/ch1/1-03_temp-table-header.c
@@ -11,13 +11,10 @@
int main(void) {
float fahr, celsius;
int lower, upper, step;
-
lower = 0;
upper = 300;
step = 20;
-
fahr = lower;
-
printf(" F | C\n");
printf("------------\n");
while (fahr <= upper) {