单项选择题
A. 对文件操作必须先关闭文件 B. 对文件操作必须先打开文件 C. 对文件操作顺序没有统一规定 D. 以上三种说法全错
A. (*p).next=(*q).next; free(p); B. p=q->next; free(q); C. p=q; free(q); D. p->next=q->next; free(q);
A. typedef struct B. struct REC; int n;char c;REC; int n;char c;; REC t1,t2; REC t1,t2; C. typedef struct REC; D. struct int n=0;char c='A';t1,t2; int n;char c;REC; REC t1,t2;