![]() |
password prog
Can anybody help me with this password prog
I want this working but it says i cant store char [20] it only takes first word like if i type passs word as hello it will take h Code:
#include<iostream> |
Re: password prog
Try to use string class for that
|
Re: password prog
waiting for more replays
|
Re: password prog
The string class implements the syntax you're trying to use, i.e. assigning strings with = and comparing them with ==. If you don't want to use the string class then you need to use strcpy and strcmp instead.
p=newpass won't work because p is const. And p==pass will evaluate FALSE because these pointers point to different places. p==pass compares the pointers, not the string contents. |
Re: password prog
Code:
#include<iostream> |
Re: password prog
I thought that way, I think is better for c++
Code:
#include <iostream> |
| All times are GMT +5.5. The time now is 21:08. |