vote up 1 vote down star

considering this piece of code

    char *pass="test";
    int keyPressed;
    char *password=(char *)malloc(PASS_LENGTH*sizeof(char));
    int index=0;
    printf("Enter the password please\n");
    do
    {
    	keyPressed=getch();
    	password[index++]=keyPressed;
    }
    while(keyPressed!=13);
    int result=strcmp(pass,password);

i think you understand what i want to do :)
i read in *password "test" but result is not 0, some explanation would be good:)

flag

0% accept rate

6 Answers

vote up 1 vote down

akappa's suggestion will fix the strcmp problem you're seeing.

Also note you're mallocing a finite amount of memory but when writing this memory you don't check against the size of the allocated block. The code as written will allow writing passed the end of "password".

link|flag
vote up 6 vote down

Since I think this is homework ... try writing out the strings after they've pressed Enter and see if you can see a difference.

link|flag
vote up 0 vote down

The carriage return is included on the end of password.

link|flag
vote up 0 vote down

You should malloc PASS_LENGTH+1 and set password[index] = 0 at before the last line of code. as strcmp and other C str routines work with ASCIIZ strings

link|flag
vote up 0 vote down

Looks like it would be "test\n" because you already added keyPressed. Thereby also overflowing the password variable.

link|flag
vote up 5 vote down

You have to remove the last character and "close" the string: put

password[index - 1] = '\0'

after the do-while.

link|flag
I think you meant '\0' – Ben May 15 at 18:39
i think he meant "\0" (double quotes) – Kris May 15 at 18:40
ops... Corrected :) – akappa May 15 at 18:41
@Kris Double quotes is a string (multiple characters), single quotes is a single character. So single quotes is correct here. – Stephen Darlington May 15 at 19:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.