diff options
| author | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-11-19 19:10:54 +0800 |
|---|---|---|
| committer | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-11-19 19:10:54 +0800 |
| commit | 4a0892f3c653070841cbf12c84fc6e007571d0c5 (patch) | |
| tree | a762618be62d6e44c2738d3051dbe4ace6d4ba40 /1 | |
| parent | 68d16012e3dfd3d8721864d3a427dd4b56619144 (diff) | |
| download | k&r-exercises-4a0892f3c653070841cbf12c84fc6e007571d0c5.tar.gz | |
Comments.
Diffstat (limited to '1')
| -rw-r--r-- | 1/15.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
