From c8910bbee61ee8563621f501b887565ae227b462 Mon Sep 17 00:00:00 2001 From: dsuclassprojects Date: Wed, 2 Dec 2020 21:52:03 -0600 Subject: [PATCH] the change I made --- buggy.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/buggy.c b/buggy.c index 033b3e4..24f1ad3 100644 --- a/buggy.c +++ b/buggy.c @@ -5,13 +5,14 @@ void main() { - char password[80); + char password[80]; - print("Create a password: "]: + print("Create a password: "): scanf("%s", password); - integer passwordlength; + int passwordlength; passwordlength = strlen(password); - printf("Your password is %s and %i characters long', password, passwordlength) + printf("Your password is %s and %i characters long", password, passwordlength); + }