鱼C论坛

 找回密码
 立即注册
查看: 1577|回复: 2

[技术交流] c

[复制链接]
发表于 2016-4-10 11:05:09 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
@小甲鱼 @康小泡 帮我看一看读的win7的MBR对不对
/*
*c/c++读MBR
*/
#include <iostream>
#include <fstream>
#include<stdio.h>
void show_bytes(unsigned char * ,int );
using namespace std;
int main(void)
{
  char buffer[513];
  ifstream in("\\\\.\\PHYSICALDRIVE0",ios::binary|ios::in);
  in.read(buffer,sizeof(buffer));
  in.close();
  show_bytes((unsigned char *)buffer,sizeof(buffer));  
  system("pause");
  return 0;
}
void show_bytes(unsigned char *star,int len)
{
  int i;
  for(i=0;i<(len-1);i++)
  printf("%.2x",star[i]);
  printf("\n");
}
QQ截图20160410102627.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-4-10 11:09:51 | 显示全部楼层
/*
*c/c++读MBR
*/
#include <iostream>
#include <fstream>
#include<stdio.h>
void show_bytes(unsigned char * ,int );
using namespace std;
int main(void)
{
  char buffer[513];
  ifstream in("\\\\.\\PHYSICALDRIVE0",ios::binary|ios::in);
  in.read(buffer,sizeof(buffer));
  in.close();
  show_bytes((unsigned char *)buffer,sizeof(buffer));  
  system("pause");
  return 0;
}
void show_bytes(unsigned char *star,int len)
{
  int i;
  for(i=0;i<(len-1);i++)
  printf("%.2x",star[i]);
  printf("\n");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-4-10 11:11:35 | 显示全部楼层
看第二次发的代码

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 22:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表