阅读背景:

通过argv向C程序输入零字节

来源:互联网 

Here is the simple C prog

这是简单的C编程

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
        int hex;
        memcpy(&hex, argv[1], 4);
        printf("hex %x\n", hex);
        return 0;
}
#include



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: