Welcome

Hi! This blog is for beginners of c++ and java .You can check and pick codes for your programming assignments. This will also help you to understand the concepts of these programming languages. Its all about programming.

BASIC PRACTISE C++(SHOW PASSWORD AS STARS)

Saturday, May 28, 2011

#include<iostream>
#include<conio.h>
#include<windows.h>
#include<string>
using namespace std;
void main()
{

string name="bahria";
string check;
system("cls");
cout<<"\n enter the paswwod\n";
for(int i=0;i<name.length();i++)
{
check+=getch();
cout<<"*";
}
if(name == check)
{
cout<< "\n Corrected !!";
}
else
cout<<"\n Not Correct !!";
getch();
}