当我尝试编译以下代码时,出现错误
test.c: In function 'main':
test.c:16: error: incompatible types in assignment
代码是..
#include <stdio.h>
#include <ctype.h>
#include <string.h>
typedef struct {
char name[20];
struct planet* next;
} planet;
int main(int argc, char *argv[])
{
planet *p, *start, *first, *second, *third;
strcpy(start->name, "Suthan");
start->next = *first;
}