This blog is a start up by few folks. Each have their own interest in different areas but they had one thing in common. They like to share whatever they have learn. They firmly believe in this quote "Those who bring sunshine into the lives of others, cannot keep it from themselves". They wish to light each others life, that sparked the idea of this blog. We work towards a common goal of making world smarter by becoming smarter.
Tuesday, 23 November 2010
C code for reading password of fixed length
void main() { char password[25]; int length,i;
//length specifies length of password scanf("%d",&length); for(i=0;i<length;i++) { password[i]=getch(); printf("*"); } // further you can use variable password anywhere
No comments:
Post a Comment