summaryrefslogtreecommitdiffstats
path: root/1
diff options
context:
space:
mode:
authorSadeep Madurange <smadurange@users.noreply.github.com>2021-11-19 19:10:54 +0800
committerSadeep Madurange <smadurange@users.noreply.github.com>2021-11-19 19:10:54 +0800
commit4a0892f3c653070841cbf12c84fc6e007571d0c5 (patch)
treea762618be62d6e44c2738d3051dbe4ace6d4ba40 /1
parent68d16012e3dfd3d8721864d3a427dd4b56619144 (diff)
downloadk&r-exercises-4a0892f3c653070841cbf12c84fc6e007571d0c5.tar.gz
Comments.
Diffstat (limited to '1')
-rw-r--r--1/15.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/1/15.c b/1/15.c
index 3499ec7..789e3bc 100644
--- a/1/15.c
+++ b/1/15.c
@@ -1,8 +1,8 @@
#include <stdio.h>
-/* converts fahrenhite to celsius */
int ftoc(int fahr);
+/* converts fahrenhite to celsius using a helper function */
int main(int argc, char *argv[]) {
int fahr, celsius;
int lower, upper, step;