diff --git a/buggy.c b/buggy.c index 033b3e4..50a9b1a 100644 --- a/buggy.c +++ b/buggy.c @@ -5,13 +5,13 @@ 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); }