日期:2014-05-16 浏览次数:20792 次
#include <stdio.h> #include <stdlib.h> int main() { void *p = malloc(4); p += 8192; *(int *)p = 100; return 0; }