我想定义一个任何大小的缓冲区,它会在内存中分配一些空间。我想读取分配给该缓冲区的内存中的现有数据。
我尝试过以下代码,但我每次都只看到一些特殊字符。
如果我通过 DumpIt 工具转储我的内存,然后通过 HEX 编辑器打开它,我可以看到普通字符(如数字和 abc 等)。
我使用了下面的代码,它使用了这里首先提到的两种技术,第二种只使用简单的数组并一个一个地遍历每个字符。
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <process.h>
#include <time.h>
#include <cstdlib>
#include <stdint.h>
int main()
{
int x = 4;
char arr[400];
char * src;
src = arr;
uint8_t *memory = (uint8_t *) malloc(1000);
while(*memory != NULL) {
printf("Character %c\n", *(memory++));
memory++;
}
while(src != NULL) {
printf("%c ", *src);
x++;
if(x == 1000)
break;
}
printf("And the data stored in memory is %s\n", arr);
system("PAUSE");
return 0;
}