summaryrefslogtreecommitdiff
path: root/wk1/phone-book.c
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-03 05:47:26 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-03 05:47:26 +0000
commit2e86106732db92667bd8a64e3f98c1b6e8df86a5 (patch)
treeee6342475f4ac8e0fc0e3a9ceee6fc9fcf86419b /wk1/phone-book.c
parenta370a263dfd961807863558585b3fa9a1a7fce3c (diff)
Sat, Dec 2, 2023, 9:47 PM -08:00
Diffstat (limited to 'wk1/phone-book.c')
-rw-r--r--wk1/phone-book.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wk1/phone-book.c b/wk1/phone-book.c
index b0c5a9d..e37fa2b 100644
--- a/wk1/phone-book.c
+++ b/wk1/phone-book.c
@@ -6,5 +6,5 @@ int main(void)
string name = get_string("What's your name? ");
int age = get_int("What's your age? ");
string phone = get_string("What's your phone number? ");
- printf("Age is %i. \nName is %s. \n Number is %s. \n", age, name, phone);
+ printf("Age is %i. Name is %s. Number is %s. \n", age, name, phone);
}