-
Program Password
Berikut Source code untuk program memasukkan password, passwordnya akan diganti menjadi sebuah karakter bintang "*"..
Dibuat dengan menggunakan bahasa C++ dan Kompilernya menggunkan Turbo C 4.5..
#include <iostream.h>
#include <conio.h>
#include <string.h>
#include <stdio.h>
int main()
{
int j=0;
char c;
char temp[50],temp1[50];
cout << "Enter password: ";
do{ c = getch();
if (c!='\r'){
putch('*');
temp[j] = c;
} j++; }
while (c != '\r');
strncpy(temp1,temp,j-1);
temp1[j-1] ='\0'; puts (temp1);
if ((strcmp(temp1, "ryan"))==0) cout << "Password accepted.\n";
else cout << "Access denied.\n";
return 0;
}
Subscribe to:
Post Comments (Atom)
0 comments: