C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting
C > Code Snippets sample source codes
This checks whether the floppy disk is ready in DOS
This checks whether the floppy disk is ready in DOS #include
#include
void main(void) { char buffer[8192]; // Try reading head 1, track 1, sector 1 if (biosdisk(2, 0, 1, 1, 1, 1, buffer)) printf("Error accessing drive\n"); else printf("Drive ready\n"); }
Privacy Policy
|
Link to Us
|
Links