写一段隐写术测试代码,将字符串ABC写入可执行文件

//写一段隐写术测试代码,将字符串ABC写入可执行文件
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
    FILE *fp;
    char *str = "ABC";
    if((fp = fopen("test.exe","wb")) == NULL)
    {
        printf("打失败\n");
        exit(0);
        }
        fwrite(str,strlen(str),1,fp);
        fclose(fp);
        return 0;

 

© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称常用语 夸夸
夸夸
还有吗!没看够!
表情代码图片

    暂无评论内容