home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / misc / chrised.cpp < prev    next >
C/C++ Source or Header  |  1996-02-22  |  590b  |  24 lines

  1. #include "stdio.h"
  2. #include "conio.h"
  3. char paWord[52];
  4. main()
  5. {
  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.     goto install;
  17.     goto end;
  18.     install:
  19.     clrscr();
  20.     printf("installation goes here");
  21.     getch();
  22.     end:
  23.     return 0;
  24. }