Traverse the memory by  (char*) , because every time it will increase by 1byte

when i want get the int value , i need convert (char*) to (int*) , after that ,

it will get the value from continuous 4 bytes .

void *p = (void*)0x00C5FBF8;
void *q = (void*)0x00C5FFFF; for (char* c = (char*)p; c != q ; c++)
{
  int k = *((int*)c);
  printf("%d\n", k);
}

最新文章

  1. 如何根据执行计划,判断Mysql语句是否走索引
  2. Microsoft.Web.Redis.RedisSessionStateProvider
  3. 基于 REST 的 Web 服务:基础
  4. IOS- 堆和栈 详解
  5. eclipse code templates 设置(eclipse注释模版配置)
  6. [Everyday Mathematics]20150221
  7. FusionCharts Free 注意事项
  8. BZOJ_1609_[Usaco2008_Feb]_Eating_Together_麻烦的聚餐_(动态规划,LIS)
  9. wiki 的捐款呼吁有感而发
  10. String类扩展
  11. 深入理解JavaWeb技术内幕之中文编码
  12. RHEL 6.3使用CentOS yum源 (redhat yum安装失败)
  13. IWebBrowser隐藏滚动条
  14. 移动端https抓包那些事--初级篇
  15. mysql必知必会
  16. 【USACO Feb 2014】Cow Decathlon
  17. arcEngine开发之查询的相关接口
  18. http跳转htts的htaccess文件设置
  19. 解题(DirGraCheckPath--有向图的遍历(深度搜索))
  20. mysql 热备份

热门文章

  1. Oracle数据库clob字段导出为sql insert插入语句
  2. GOF23设计模式之命令模式(command)
  3. (转)Inno Setup入门(十六)——Inno Setup类参考(2)
  4. json用法常见错误
  5. 为什么Java程序占用的内存比实际分配给它的要多
  6. Hive语句执行优化-简化UDF执行过程
  7. combiner中使用状态模式
  8. Servlet的复习
  9. IDA Pro 权威指南学习笔记(十二) - IDA 中的注释
  10. SqlLoad常用技巧总结