How to create a password field for creation of a page in 'c' or 'c++'.

Showing Answers 1 - 2 of 2 Answers

J.Pavan Kumar

  • Mar 10th, 2007
 

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

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions