次のコードは、あるファイルから一部のデータを選択して別のファイルにコピーするように記述されていますが、通知された位置で「割り当てに互換性のない型」というエラーが表示されます。このエラーの原因を特定できません。喜んでお手伝いさせていただきます。
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *myfile;
myfile=fopen("write.txt","a");
char *name;
int id,i=0,check,*w,n=0;
if(myfile)
{
do
{
printf("Enter ID and Name of the student\n");
scanf("%d%s",&id, name);
fprintf(myfile,"%d$ %s@", id, name);
printf("Are there any more students [y/n]");
}while(getch()=='y');
fclose(myfile);
}
printf("Do you want to shortlist the students [y/n]?");
if(getch()=='y')
{
myfile=fopen("write.txt","r");
while(check!=EOF)
{
check=getc(myfile);
i++;
if(check=='%')
n++;
}
fclose(myfile);
myfile=fopen("write.txt","r");
int x[i-1];
char car[n][20];
int yolo,y=0,q=0,j,h,temp;
for(j=0;j<i;j++)
{
x[j]=getc(myfile);
if(x[j]=='$')
{
w[q]=x[j-1];
yolo=temp=j;
q++;
}
else
if(x[j]=='@')
{
yolo++;
for(h=0;h<j-temp;h++)
car[y]=(char)x[yolo]; // ERROR
y++;
}
}
fclose(myfile);
//char data= new char[i++];
//fscanf();
myfile=fopen("shortlisted.txt","a");
if(myfile)
{
printf("Type the ID of the student you want to shortlist:\n");
scanf("%d",id);
}
}
else
printf("The file you specified doesn't exists");
printf("Hello world!\n");
return 0;
}
このコードは現時点では少し作業が必要ですが、コードを完成させる前に考えられるすべてのエラーを削除したいと考えています
よろしく