我的程序是一个任务列表管理器......它使用 fgets/stdin 获取任务的名称、优先级和日期,并将其放入一个结构中。这是我的程序的相关片段:
task *makeTask(char *name, char *date, char *priority)
{
task *the_task = malloc(sizeof(task));
int i;
the_task->task_name = (char*)malloc(sizeof(char) * (strlen(name)));
for (i=0;name[i] != '\n'; i++) {
if (name[i] != '\0')
the_task->task_name[i] = name[i];
}
the_task->task_name[i] = '\0';
//already allocated for in struct
for (i=0;date[i] != '\n'; i++) {
if (date[i] != '\0')
the_task->date_entered[i] = date[i];
}
the_task->date_entered[i] = '\0';
the_task->priority = atoi(priority);
return the_task; // FILE THIS IN
}
这是预期的输出:
0: Feed the cats, priority: 5. Entered 01/01/1111
这是实际的输出:
0: edsats, priority: 5. Entered 01/01/1111
在过去的一个小时里,我一直在挠头试图解决这个问题……我的代码怎么了?