- #include <stdio.h>
- #include <dos.h>
- void main(void)
- {
- struct fatinfo fat;
- getfatd(&fat);
- printf("Sectors per cluster %dn", fat.fi_sclus);
- printf("Clusters per disk %un", fat.fi_nclus);
- printf("Bytes per cluster %dn", fat.fi_bysec);
- printf("Disk type %xn", fat.fi_fatid & 0xFF);
- }