c语言中 basename的参数定义报错的奇怪问题
各位大神们,今天我遇到了一个很奇怪的问题,我的工作环境:linux redhat 5.4
gcc 的版本:
Using built-in specs.
Target: x86_64-redhat-linux
コンフィグオプション: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
スレッドモデル: posix
gcc バージョン 4.1.2 20080704 (Red Hat 4.1.2-46)
我的一个c测试程序
[root@localhost c3]# cat test2.c
#include <string.h>
#include <stdio.h>
int main(void)
{
char PTAHG[]="/home/prc/test/test.l";
char b[256];
memset(b,0x00,256);
printf("PTAHG:[%s]\n",PTAHG);
sprintf(b,"%s",basename(PTAHG));
printf("b:[%s]\n",b);
return 0;
}
[root@localhost c3]#
我运行后发现一只报错,最后才发现是char PTAHG[]="/home/prc/test/test.l";
定义的问题,如果把这个定义点放到main外变成全局变量就可以正常执行,但是我查过很多资料,没有对basename的参数有特殊要求啊啊!
请各位大神帮我解释一下
谢谢