结构体与指针的应用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了结构体与指针的应用相关的知识,希望对你有一定的参考价值。

#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <string.h>

struct Book
{
    char name[20];
    short price;
};
int main()
{
    struct Book b1 = { "C语言指针指南", 105 };
    struct Book* pb = &b1;
    printf("书名:%s
", pb->name);
    printf("价格;%d元
",(*pb).price);
    b1.price = 100;
    printf("价格;%d元
", (*pb).price);
    strcpy(b1.name, "C++");
    printf("书名:%s
", pb->name);
    return 0;
}

以上是关于结构体与指针的应用的主要内容,如果未能解决你的问题,请参考以下文章

C++ 结构体与类指针

结构体与共用体

结构体与共用体

结构体与共用体

结构体与共用体

结构体与公用体