C program to reboot the system using int86 () function
/* Program to reboot the system using int86() function.*/
#include<stdio.h>
#include<conio.h>
#include<process.h>
#include<dos.h>
void main()
{
clrscr();
printf("\n Press any key to reboot!");
getch();
int86(0x19,0,0);
}
No comments:
Post a Comment