Program for getting the disk status.

Program for getting the disk status | Program to get disk status in C | disk status getting from C.




void main(void)
{
clrscr();
union REGS regs;
regs.h.ah = 1;
regs.h.dl = 0x80;
int86(0x13,®s,®s);
printf("If successful operation then AH & AL register resets.");
printf("AH register - %d",regs.h.ah);
printf("AL register - %d",regs.h.al);
printf("Successful Operation.");
getch();
}



No comments:

Post a Comment