在vc++6.0裡面測試下面代碼運行時出現停止工作,請教是什麼原因導致的
#include <stdio.h>
#include <string.h>
int main(){
printf("%s\n",strupr("fgdfgab"));
return 0;
}
"fgdfgab"是常量指針,不能修改。
需要定義一個字符數組:
#include <stdio.h>
#include <string.h>
int main(){
char s[100]="fgdfgab";
printf("%s\n",strupr(s));
return 0;
}