我试图从文件中复制一些文本并将它们保存在结构成员中,我在 cmd.exe 上运行我的程序并且它崩溃了,但是当我在代码块或 Visual Studio 上运行它时它可以工作,
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct AMIGOS
{
char nom[' '];
char apellido[' '];
char nompila[' '];
char tel[' '];
char correo[' '];
char dir[' '];
char fecha[' '];
};
int main()
{
struct AMIGOS reg;
char registro[128];
char**datos;
char*dato;
datos = (char**)malloc(10*sizeof(char**));
int tam;
int i=0;
FILE* pt = fopen("arch.txt","r");
if(pt==NULL)
{
printf("filenotfound\n");
}
else
{
while(fgets(registro,128,pt))
{
dato = strtok(registro,"|");
while(dato)
{
tam = strlen(dato);
datos[i] = (char *)malloc(tam);
memcpy(datos[i],dato,tam);
datos[i][tam]=0;
i++;
datos[i]=0;
dato = strtok(0,"|");
}
}
strcpy(reg.nom,datos[0]);
strcpy(reg.apellido,datos[1]);
strcpy(reg.nompila,datos[2]);
strcpy(reg.fecha,datos[3]);
strcpy(reg.tel,datos[4]);
strcpy(reg.correo,datos[5]);
strcpy(reg.dir,datos[6]);
printf("%s\n",reg.nom);
printf("%s\n",reg.apellido);
printf("%s\n",reg.nompila);
printf("%s\n",reg.fecha);
printf("%s\n",reg.tel);
printf("%s\n",reg.correo);
printf("%s\n",reg.dir);
}
}
文件上的文字:
kevin|clark|ns|2001 年 3 月 15 日|5555555|l@mail.com|123 街
当我尝试在 cmd.exe 上运行它时,有人知道它为什么会崩溃吗?