结构体测试用例struct(指针用例)结构体里面含有指向自己的指针怎么用

struct node {
    int data;
    struct node *next;
    };

VOID teststurct()
{

    DBG_PRINT("测试用例teststurct******************\n");
    
    struct node *head, first;
    struct node *second = (struct node *)malloc(sizeof(struct node));
    head = &first;
        first.data = 1;
        first.next = second;
        int a=1,i;
    for(i=0;i<10;i++)
    {
      second->data = a++;
      second->next=(second+sizeof(struct node));
      second+=sizeof(struct node);
     // first=first.next
    }
    second-=sizeof(struct node);
    second->next = NULL;
    while (head) {
    printf("%d\n", head->data);
    head = head->next;
    }


    

}

测试结果如下:
结构体测试用例struct(指针用例)结构体里面含有指向自己的指针怎么用_第1张图片

你可能感兴趣的:(学习新知识,工作常用)