码迷,mamicode.com
首页 > 编程语言 > 详细

C语言变成:磁盘检测源码片段

时间:2019-01-06 11:18:37      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:abs   enter   oid   cat   main   err   include   ror   printf   

把写内容过程比较好的一些内容片段做个珍藏,下面内容是关于C语言变成:磁盘检测片段的内容。
#include <stdio.h>
#include <dos.h>
#include <malloc.h>

void main(void)
{
struct fatinfo fat;
long sector, total_sectors;

getfat(3, &fat);

if ((buffer = malloc(fat.fi_bysec)) == NULL)
printf("Error allocating sector buffern");
else
for (sector = 0; sector < total_sectors; sector++)
if (absread(2, 1, sector, buffer) == -1)
{
printf("n007Error reading sector %ld press Entern",
sector);
getchar();
}
else
printf("Reading sector %ldr", sector);
}

C语言变成:磁盘检测源码片段

标签:abs   enter   oid   cat   main   err   include   ror   printf   

原文地址:http://blog.51cto.com/14122754/2339303

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!