c-free 跟指针有点关系都不太行。。

#include<stdio.h>
#include<string.h>
main()
{
    char *s[2]={"****","****"};//不理解
    while(*s[1]!='\0')
    {
        printf("%s\n",s[0]+strlen(s[1]-1));//不理解
        s[1]++; 
    } 
}

img

你确定你发出来的代码能编译通过吗