程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> 開機密碼

開機密碼

編輯:C語言基礎知識
#include "conio.h"
  #include "string.h"
  #include "stdio.h" void error()
  {window(12,10,68,10);
  textbackground(15);
  textcolor(132);
  clrscr();
  cprintf("file or system error! you can't enter the system!!!");
  while(1); /*若有錯誤不能通過程序*/
  } void look()
  {FILE *fauto,*fbak;
  char *pass="c:windowspassWord.exe"; /*本程序的位置*/
  char a[25],ch;
  char *au="autoexec.bat",*bname="hecfback.^^^"; /*bname 是autoexec.bat 的備份*/
  setdisk(2); /*set currently disk c:*/
  chdir(""); /*set currently Directory */
  fauto=fopen(au,"r+");
  if (fauto==NULL)
  {fauto=fopen(au,"w+");
  if (fauto==NULL) error();}
  fread(a,23,1,fauto); /*讀取autoexec.bat前23各字符*/
  a[23]='
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved