I have this simple problem that gets an input from the user using a function then checks if the input is 'equal' to the "password". However, strcmp would never return my desired value, and the culprit is somewhere in my loop that uses getch() to take each character separately and add them to the character array. I found this out by having printf display the character array. If I type in pass word, the function would display it as pass word ". I have no idea on why the closing double quote and a whitespace was included in the array right after the word I typed in. Any idea? Here's the code. Thanks.

#include <stdio.h>
#include <iostream>
#include <conio.h>
#include <string.h>

int validateUser();

int main()
{
   for(int x = 0;x<2;x++)
   { 
        if(validateUser())
         {   
             system("cls");
             printf("\n\n\t\t** Welcome **"); break; 
         }
        else                    
         {   
             system("cls");
             printf("\n\n\t\tIntruder Alert!");
             system("cls"); 
         }
   } 


    system("PAUSE>nul");
    return 0;
}

int validateUser()
{
    char password[9];
    char validate[] = "pass word";
    int ctr = 0, c;
    printf("Enter password : "); 
    do
    {
        c = getch();
        if(c == 32)
        {
             printf(" ");
             password[ctr] = c;
        }

        if(c != 13 && c != 8 && c != 32 )
        {
          printf("*");
          password[ctr] = c;
        }
        c++;    
    }while(c != 13);

    return (!strcmp(password, validate));
}
link|improve this question

I see you have changed the array size. Please don't do that after you've received answers. Now my answer does not make sense. – codaddict Sep 24 '10 at 4:57
You've also changed c++ to ctr++ this makes the answer by user @joshD completely useless. Please revert the changes. – codaddict Sep 24 '10 at 5:03
sorry sir those are just typos, but I'll be reverting it now. – arscariosus Sep 24 '10 at 5:08
feedback

3 Answers

up vote 5 down vote accepted
  • Your char array password does not have a terminating null char.
  • You need to ensure that you don't stuff more than 8 char into password
  • Also c++ should be ctr++

.

do {
 // stuff char into password.
 ctr++; 
}while(c != 13 && ctr <8);

password[ctr] = 0;
link|improve this answer
oh, so do I have to explicitly add the /0 right after the user pressed enter sir? – arscariosus Sep 24 '10 at 4:47
1  
Yes. You are right. – codaddict Sep 24 '10 at 4:53
Actually its \0 whose value is 0 so you can assign 0 – codaddict Sep 24 '10 at 5:00
Thanks a lot sir. Now I have completely understood. I thought the compiler would automatically put the 0, but now I know it isn't. Also, I have reverted the changes. Sorry for that sir. – arscariosus Sep 24 '10 at 5:10
feedback

You're incrementing c in your loop. You should be incrementing ctr. Also, all the stuff everyone else has said (null terminator, only 8 characters, etc).

link|improve this answer
feedback

getch() is a function defined in a non-standard header <conio.h>. Relying on non-standard features is not recommended when you want your code to be portable. :)

link|improve this answer
I am aware of that sir, but how would that information help me in any way? – arscariosus Sep 24 '10 at 4:46
1  
It might prompt you to look for alternatives, either C style from <stdio.h>, or C++ style using std::cin's member functions. Similarly, '\n' is a portable notation for a newline character, a good alternative to hardcoding ASCII 13 (the carriage return code, rarely used for this outside DOS/Windows). Not a priority when you're just starting to learn coding though. – Tony Delroy Sep 24 '10 at 5:29
feedback

Your Answer

 
or
required, but never shown

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