单项选择题

在顺序串中,用一个指针来指向最后一个字符,C语言的表示如下: typedef struct { char data[MAXSIZE]; int curlen; } SeqString; 请定义一个串变量:

A、structg s
B、typedef struct s;
C、SqString s;
D、SeqString s;