#include#define reboot 0x19void rebootpc(){union REGS inregs,outregs;int86(reboot, &inregs, &outregs); // Call BIOS}void main(){rebootpc();}