error C2143: 语法错误 : 缺少“;”(在“*”的前面)

typedef struct node
{
char num[20];
int YW;
}
LinkList *L:

你用了中文的分号

 #include<stdio.h>
typedef struct node
{
    char num[20];
    int YW;
}*LinkList;
int main() {
    LinkList l;
}