Program in C to print the details fo the programmer if the given number is 464

Write a program in C to print the details fo the programmer if the given number is 464

#include <stdio.h>

void main ()
{
          int pass;
          clrscr();
          do
          {
                   printf ("Enter Password to see the detail of programmer:\n");
                   scanf ("%d",&pass);
          }
          while (pass!=464);
          printf ("\nJagjeet Singh");
          printf ("\nB.Sc. (I.T.)\nPunjab Technical University");
          getch ();
}


Post a Comment