下面是一个程序的函数:
//read the specified file and check for the input ssn
int readfile(FILE *fptr, PERSON **rptr){
int v=0, i, j;
char n2[MAXS+1], b[1]=" ";
for(i=0; i<MAXR; i++){
j=i;
if(fscanf(fptr, "%c\n%d\n%19s %19s\n%d\n%19s\n%d\n%19s\n%19s\n%d\n%d\n%19s\n\n",
&rptr[j]->gender, &rptr[j]->ssn, rptr[j]->name, n2, &rptr[j]->age,
rptr[j]->job, &rptr[j]->income, rptr[j]->major, rptr[j]->minor,
&rptr[j]->height, &rptr[j]->weight, rptr[j]->religion)==EOF) {
i=MAXR;
}
strcat(rptr[j]->name, b);
//strcat(rptr[j]->name, n2);
if(&rptr[MAXR]->ssn==&rptr[j]->ssn)
v=j;
}
return v;
}
注释行是这样的,因为由于某种原因,数组“b”包含字符串“n2”,尽管明显缺少赋值。这发生在第一次 strcat 调用之前,但在 fscanf 调用之后/期间。
它确实实现了预期的目标,但是为什么将 n2 连接到 b 的末尾,尤其是当 b 只为 1 个数组元素保留空间时?
以下是 fscanf 调用后的变量定义片段:
*rptr[j]->name = "Rob"
b = " Low"
n2= "Low"