home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / misc / chrised.bak < prev    next >
Text File  |  1992-05-23  |  609b  |  25 lines

  1. #include "stdio.h"
  2. #include "conio.h"
  3. main()
  4. {
  5.     char paWord;
  6.     textbackground(BLUE);
  7.     clrscr();
  8.     printf("\n\n\n\n\n\n\n\n\n\n\n\n  ");
  9.     textcolor(WHITE);
  10.     cprintf("Password?");
  11.     printf("      ");
  12.     textbackground(BLACK);
  13.     cprintf("                                                              ");
  14.     printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
  15.     scanf("%c",&paWord);
  16.     if (paWord == '')
  17.     {goto install;}
  18.     goto end;
  19.     install:
  20.     clrscr();
  21.     printf("installation goes here");
  22.     getch();
  23.     end:
  24.     return 0;
  25. }