美文网首页
结构体与指针的./->

结构体与指针的./->

作者: YAOPRINCESS | 来源:发表于2020-10-21 13:39 被阅读0次

在线编译网站

http://www.dooccn.com/c/

太久没写过c了,回顾一下语法

#include <stdio.h>
typedef struct test{
    int x;
    int y;
    struct test * pre;
    struct test * next;
}test;
typedef struct code{
    int x;
    int y;
    struct test* test1;
}code;
int main(void) { 
    test test3;
    test3.x=5;
    
    test test2;
    test2.x=3;
    test2.y=4;
    test2.next=&test3;
    
    
    code code1;
    code1.x=1;
    code1.y=2;
    code1.test1=&test2;
    
    printf("1x:%d...1y:%d...test2x:%d...test2y:%d...test3x:%d",code1.x,code1.y,code1.test1->x,code1.test1->y,code1.test1->next->x);
    return 0;
    
}
#include <stdio.h>
typedef struct test{
    int x;
    int y;
    struct test * pre;
    struct test * next;
}test;
typedef struct code{
    int x;
    int y;
    struct test* test1;
}code;
int main(void) { 
    test test3;
    test3.x=5;
    
    test test2;
    test2.x=3;
    test2.y=4;
    test2.next=&test3;
    
    
    code code1;
    code1.x=1;
    code1.y=2;
    code1.test1=&test2;
    
    test *test4 = code1.test1;
    printf("test4:%d...\n",test4->x);
    test4=test4->next;
    printf("test4next:%d...\n",test4->x);
    
    printf("1x:%d...1y:%d...test2x:%d...test2y:%d...test3x:%d",code1.x,code1.y,code1.test1->x,code1.test1->y,code1.test1->next->x);
    return 0;
    
}

相关文章

  • C语言20 结构体指针

    C语言20 结构体指针 探测结构体指针的特性 ++、-- 加法与减法 指针相减 使用结构体指针 结构体指针一定要指...

  • C语言-5、结构体

    写法一 写法二 写法三 结构体指针 结构体指针 与 动态内存开辟 结构体的数组 结构体与结构体指针 取别名 取别名...

  • 结构体与结构体指针数组

    1.结构体定义与使用。 2.结构体指针 与 动态内存开辟。 3.结构体的数组。 4.结构体与结构体指针 取别名。 ...

  • C语言基础及指针⑧文件IO

    接续上篇C语言基础及指针⑦结构体与指针在结构体与指针中 , 我们了解到结构体与java中的类相似 , 也是一种自定...

  • Day10

    指针 指针与函数 练习回调函数 结构体 基本概念 结构体变量初始化 定义结构体变量 结构体变量作用域结论; 和变量...

  • 结构体与结构体指针

    C中的结构体,对应JAVA中的类的概念。也就是一些数据结构的集合,形成一种新的数据结构。 见一个例子 struct...

  • Go语言之结构体指针

    结构体本身属于值类型,可以通过指针操作结构体,编程引用类型的数据,通过new()创建指针 结构体指针

  • 函数指针,联合体,枚举,结构体和结构体指针

    函数指针 联合体 枚举 别名 结构体 结构体指针

  • 指针与结构体

    二维vector的遍历 指针初始化 指针变量存放的是变量的地址定义初始化:指针定义时初始化可以用“=” 类型名指针...

  • 结构体与指针

    1.1 Linux C语言结构体 简介:本课程深入的讲解了C语言中,预处理是怎么回事,结构体和公用体又是如何使用及...

网友评论

      本文标题:结构体与指针的./->

      本文链接:https://www.haomeiwen.com/subject/weosmktx.html