FILE *fin;char str[40960];long int i=0;fin = fopen("1.txt","r");while (!feof(fin)) {str[i] = fgetc(fin);i++;}所有 字符 都 在 str[40960]; 里