当前位置: 代码迷 >> C语言 >> DEV C++有问题吗?
  详细解决方案

DEV C++有问题吗?

热度:400   发布时间:2007-12-05 08:45:04.0
DEV C++有问题吗?
#include <stdio.h>
#include <string.h>
int main(void)
{
    char a[50]="love";
    printf("%s",strupr(a));
    getchar();
    return 0;
}
会有错误提示:6 C:\Documents and Settings\Administrator\My Documents\未命名1.c [Warning] implicit declaration of function `strupr'
如图把下图里面的圈里的“V”去掉,就正常为什么?

[img]http://bbs.bc-cn.net/[URL=http://p14.freep.cn/p.aspx?u=v20_p14_p_0712050840591080_0.jpg&click=1][/URL][/img]
搜索更多相关的解决方案: DEV  love  Documents  

----------------解决方案--------------------------------------------------------
C99标准里还没有strupr(char *);函数的定义.
----------------解决方案--------------------------------------------------------
你的意思是我的程序没错是吗?
----------------解决方案--------------------------------------------------------
具体有没有,我不太确定,但提示是隐式定义,你在前面声明一下就可以了


程序代码:

#include <stdio.h>
char *strupr(char *s);
int main()
{
    char a[50]="love";
    printf("%s",strupr(a));
    getchar();
    return 0;
}


----------------解决方案--------------------------------------------------------
  相关解决方案