Pages

To Print the detail of the programmer

Wednesday 3 July 2013
#include<stdio.h>

void main ()
{
    int pass;
    clrscr();

    do
    {
        printf ("Enter Password to see the detail of programmer:\n");
        scanf ("%d",&pass);
    }
    while (pass!=787);

    printf ("\n Naman Trivedi");
    printf ("\n M.Sc. (I.T.)\nPunjab Technical University");
    getch ();
}

No comments:

Post a Comment