From 6a955e3fa3ea6ac4ec2f243cd578ddcf5038c02f Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 22 Feb 2021 07:06:15 -0500 Subject: [PATCH] Work on Exercise 5-2 --- ch_05/exercise_05-02/main_template.c | 15 +++++++++++++++ ch_05/main_template.c | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 ch_05/exercise_05-02/main_template.c create mode 100644 ch_05/main_template.c diff --git a/ch_05/exercise_05-02/main_template.c b/ch_05/exercise_05-02/main_template.c new file mode 100644 index 0000000..29c3190 --- /dev/null +++ b/ch_05/exercise_05-02/main_template.c @@ -0,0 +1,15 @@ +/* + * + * Exercise 5-2. Write getfloat, the floating-point analog of getint. What type does getfloat + * return as its function value? + * + * Author: Kun Deng + */ + + +int main() +{ + + + return 0; +} diff --git a/ch_05/main_template.c b/ch_05/main_template.c new file mode 100644 index 0000000..edaab93 --- /dev/null +++ b/ch_05/main_template.c @@ -0,0 +1,14 @@ +/* + * + * Exercise 5- + * + * Author: Kun Deng + */ + + +int main() +{ + + + return 0; +}