From 3e2043161262f875a7742c7b0db18957c56b81e0 Mon Sep 17 00:00:00 2001 From: tylerswenson94 Date: Wed, 2 Dec 2020 22:41:15 -0600 Subject: [PATCH] changes --- buggy.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/buggy.c b/buggy.c index 033b3e4..a212e23 100644 --- a/buggy.c +++ b/buggy.c @@ -5,13 +5,13 @@ void main() { - char password[80); + char password[80]; - print("Create a password: "]: + printf("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"); }