Monday, July 2, 2018

C program to show how user authentication is done

    /*

     * C program is to illustrate how user authentication is done.

     * Program asks for the user name and password and displays

     * the password as '*' character

     */

    #include <stdio.h>



    void main()

    {

        char password[31], username[31], ch;

        int i;



        printf("Enter User name: ");

        gets(username);

        printf("Enter the password < any exact 30 characters>: ");

        for (i = 0; i < 31; i++)

        {

                ch = getchar();

                password[i] = ch;

                ch = '*' ;

                printf("%c", ch);

        }

            password[i] = '\0';

        /*  Original password can be printed, if needed */

        printf("\n Your password is :");

        for (i = 0; i < 31; i++)

        {

                printf("%c", password[i]);

        }

    }

No comments:

Post a Comment

इश्क में ग़ैरत-ए-जज़्बात ने रोने ना दिया - सुदर्शन फ़ाकिर

 इश्क में ग़ैरत-ए-जज़्बात ने रोने ना दिया वरना क्या बात थी किस बात ने रोने ना दिया आप कहते थे कि रोने से ना बदलेंगे नसीब उमर भर आप की इस बात...