判断字符串中是否有相同的字符

#include"stdio.h"
#include"string.h"


void main(){
        char *str="qwertyuiq";
        int i,j;
        for(i=0;i                 for(j=i+1;j                         if(str[i]==str[j]){
                                printf("there has a same c\n");
                                        return ;
                        }
                }
        }
        printf("right\n");
}
~  

你可能感兴趣的:(字符串详解)