`
jbaggio
  • 浏览: 13467 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

To print the memory content by C

    博客分类:
  • IT
阅读更多
void* content = malloc(16);

// assume there are somethings in "content"

unsigned char* p = (unsigned char*)content;

for (int i = 0; i < 16; i++){

printf("%2X", p[i]);

}

Unforunately, I did not find a C API just like memDump(void* point, int size).
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics