• Please review our updated Terms and Rules here

simple password checker

WellT

New Member
Joined
Sep 1, 2006
Messages
3
i created a program that prompts the user to give a psswrd, then the program stores the password. the program then checks the password. but when it gets to the part where it checks the password, no matter what i do, it never sees that the two strings are the same...i was wondering if i someone could point me in the right direction?

anyways, here is the code:

Code:
//store/check password
#include <iostream>
#include <cstdlib>
using namespace std;

class pswrd {
public:
char ps[80], usr[80];
int len;
void set_ps (char *p) {strcpy(ps, p);}
void check_ps () {
printf(""\nPassword: "");
cin>>usr;
if(usr!=ps) cout<<endl<<""Access Denied"";
else if(usr==ps) cout<<endl<<""Access Granted"";
}
};

int main ()
{
pswrd ob1;
char p[80];
printf(""Set Password: "");
cin>>p;
ob1.set_ps(p);
ob1.check_ps();
system(""PAUSE"");
}


_________________
 
Last edited by a moderator:
Somebody might be able to help you with your C++ code but please make an effort to get it in the right part of the forum. This is the second post I've moved from you in the last two minutes.

Moving to general off topic.

Yes, it's a programming question but it doesn't appear to be vintage computer related.
 
It was years since I touched C++, but can you compare the content of two arrays with the = operator? In traditional C, you would use strcmp to compare the two strings (implemented as array of char). I'm afraid you need to do the same in C++, or in this case you might do a comparison of the memory addresses where ps[80] and usr[80] are stored.
 
I had posted exactly the same thing but I deleted it because I had never looked into C++. Unless C++ has some powerful operators, like the man said, you are comparing the address of one array with the address of another one. Surprise, not equal all the time.
 
You can overload operators in C++, but I'm unsure if the = operator is overloaded for arrays. IIRC there is a specific String (capital S) class/variable type you can use, and it would allow the simple type of comparison. The poster - like many of us - seems to program in a mix of C and C++ which tends to confuse you at some point.
 
Back
Top