GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Placement Papers  >  Kanbay

 Print  |  
Question:  how to create a password field for creation of a page in 'c' or 'c++'.



March 03, 2007 22:59:11 #1
 J.Pavan Kumar   Member Since: Visitor    Total Comments: N/A 

RE: how to create a password field for creation of a p...
 

#include <conio.h>
void main()
{
           char *password;
           password = getpass("Enter the password: ");
           cprintf("Password: %s",password);
}

     

 

Back To Question