鱼C论坛

 找回密码
 立即注册
查看: 3086|回复: 0

[技术交流] 发现了一个VC++6.0编译器漏洞

[复制链接]
发表于 2013-11-6 10:14:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
//about_const.h

#ifndef ABOUT_CONST_H
#define ABOUT_CONST_H

//字符串复制
char *MyStrcpy(char *strDest, char const *strSrc);
#endif
/////////////////////////////////////////////////////////
#include <STDIO.H>
#include <STRING.h>
#include "about_const.h"

int main()
{
        char source[] = "source string";
        char destination[32];
        int const x = 123;
        int *q = &x;

        printf("x= %d\n", x);
        *q = 0;
        printf("x= %d\n", x);

        printf("The length of destination is:%d\n",
                strlen(MyStrcpy(destination, source)));
        printf("The source string is:%s\n", source);
        printf("The destination string is:%s\n", destination);

        return 0;
}

char *MyStrcpy(char *strDest,  char const *strSrc)
{
        char *address = strDest;
        if ((strDest != NULL) && (strSrc != NULL))
        {
                while((*strDest++ = *strSrc++) != '\0');
                strSrc = NULL;
                return address;
        }
        else
        {
                return address;
        }
}
QQ图片20131106101344.jpg
QQ图片20131106101521.jpg

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 09:46

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表