在VC++6.0可以运行成功,但在wintc下面则没有结果返回
代码如下:#include "stdio.h"
#include "conio.h"
#include "string.h"
char *sort(char *dst , char *src, int n)
{
int i, j, index, temp;
char *p = src;
char *q = dst;
int len = strlen(src);
for (i = 0; dst[i] != '\0'; i++) {
index = i;
for (j = i; dst[j] != '\0'; j++) {
if (dst[index] < dst[j]) {
index = j;
}
}
temp = dst[index];
dst[index] = dst[i];
dst[i] = temp;
}
if(n>len) n = len;
p += (len-n); /*从右边第n个字符开始截取字符串*/
while(*(q++) = *(p++));
return dst;
}
main()
{
char c[50]="zheshigek";
char d[30];
int n = 5;
printf("%s\n",sort(c,d,n));
getch();
return 0;
}
在VC++6.0中可以运行成功并返回预期结果,但在wintc中则提示“while(*(q++) = *(p++));警告 noname.c 30: 可能是不正确的赋值在 sort 函数中”,且运行后没有结果返回,
换成“for(;*q!='\0';p++,q++) *q=*p;”后不再提示警告,但仍旧没有返回结果,
请教是哪里出了问题,应该要如何修改才能在wintc中运行正常?