单项选择题

以下结构体类型说明和变量定义中正确的是______。

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;