How to REBOOT your pc from c++  

Gaurav Dhup

 

Just write the following code and compile it and whoops your pc reboots

#include<iostream.h>
#include<conio.h>
#include<dos.h>

void main()
{
REGS regs;
int86(25,&regs,&regs);
getch();
}

 

Click Here!

Add your tutorials to this site Mail Me

1