Click here to Skip to main content
15,894,343 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Files and Folder Pin
_AnsHUMAN_ 19-Apr-09 19:35
_AnsHUMAN_ 19-Apr-09 19:35 
AnswerRe: Files and Folder Pin
Hamid_RT19-Apr-09 19:49
Hamid_RT19-Apr-09 19:49 
Questionauto closing messagebox Pin
gamefreak229119-Apr-09 17:15
gamefreak229119-Apr-09 17:15 
AnswerRe: auto closing messagebox Pin
N a v a n e e t h19-Apr-09 17:32
N a v a n e e t h19-Apr-09 17:32 
AnswerRe: auto closing messagebox Pin
Rajesh R Subramanian19-Apr-09 20:46
professionalRajesh R Subramanian19-Apr-09 20:46 
AnswerRe: auto closing messagebox Pin
MANISH RASTOGI19-Apr-09 22:54
MANISH RASTOGI19-Apr-09 22:54 
QuestionUsing 宝 in _RecordsetPtr, without setting Chinese IME in my windows Pin
leesense19-Apr-09 16:54
leesense19-Apr-09 16:54 
Questionchar+char issues Pin
gamefreak229119-Apr-09 14:39
gamefreak229119-Apr-09 14:39 
I'm trying to get my program to print out an asterisk when then user is typing in his/her password.
I've gotten this part to work, however. for debugging issues I'm also trying to make the program print the password at the end. It's currently only outputting the last letter typed in as if its the password.
So, how can I make the program output the entire actual password. Here is my code:

#include <conio.h>
#include <iostream.>
#include <windows.h>
using namespace std;
char password1;
char password2;
char password3;
int x=1;
int main()
{
do{
cout << "Enter a test password: " ;
do{
password1=getch();
if((password1>=65) && (password1<=122)){cout << "*";
password2=password1;
password3=password2+password1;}
else{cout << "";}
}while(password1!=13);
cout << "\nYour password is " << password3;
Sleep(2000);
system("cls");
}while(x=1);
return 0;
}


password2 and 3 were adding in when i was trying to get it to work.
AnswerRe: char+char issues Pin
aks.19-Apr-09 18:59
aks.19-Apr-09 18:59 
GeneralRe: char+char issues Pin
gamefreak229119-Apr-09 19:32
gamefreak229119-Apr-09 19:32 
Questionactivex dll problem [solved] Pin
maxMESA19-Apr-09 0:48
maxMESA19-Apr-09 0:48 
AnswerRe: activex dll problem Pin
Stuart Dootson19-Apr-09 1:47
professionalStuart Dootson19-Apr-09 1:47 
AnswerRe: activex dll problem Pin
maxMESA19-Apr-09 7:14
maxMESA19-Apr-09 7:14 
Questionpoint reference VS value Pin
sharion18-Apr-09 21:18
sharion18-Apr-09 21:18 
AnswerRe: point reference VS value Pin
Stuart Dootson18-Apr-09 22:53
professionalStuart Dootson18-Apr-09 22:53 
GeneralRe: point reference VS value Pin
sharion19-Apr-09 1:35
sharion19-Apr-09 1:35 
GeneralRe: point reference VS value Pin
Luc Pattyn19-Apr-09 1:49
sitebuilderLuc Pattyn19-Apr-09 1:49 
GeneralRe: point reference VS value Pin
Stuart Dootson19-Apr-09 1:52
professionalStuart Dootson19-Apr-09 1:52 
GeneralRe: point reference VS value Pin
sharion19-Apr-09 3:21
sharion19-Apr-09 3:21 
GeneralRe: point reference VS value Pin
Stuart Dootson19-Apr-09 3:52
professionalStuart Dootson19-Apr-09 3:52 
GeneralRe: point reference VS value Pin
Luc Pattyn19-Apr-09 4:05
sitebuilderLuc Pattyn19-Apr-09 4:05 
GeneralRe: point reference VS value Pin
Stuart Dootson19-Apr-09 4:24
professionalStuart Dootson19-Apr-09 4:24 
GeneralRe: point reference VS value Pin
Luc Pattyn19-Apr-09 4:37
sitebuilderLuc Pattyn19-Apr-09 4:37 
GeneralRe: point reference VS value Pin
Stuart Dootson19-Apr-09 4:56
professionalStuart Dootson19-Apr-09 4:56 
GeneralRe: point reference VS value Pin
Luc Pattyn19-Apr-09 5:00
sitebuilderLuc Pattyn19-Apr-09 5:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.