struct结构体基础知识

简介: /* ============================================================================ Name : TestStruct.
/*
 ============================================================================
 Name        : TestStruct.c
 Author      : lf
 Version     :
 Copyright   : Your copyright notice
 Description : struct结构体基础知识
 ============================================================================
 */

#include <stdio.h>
#include <stdlib.h>

//定义全局stundent结构体
struct stundent {
	char name;
	int age;
};

int main(void) {
	testStruct1();
	return EXIT_SUCCESS;
}

/**
 * 结构体的基本使用
 */
void testStruct1() {
	//使用全局结构体
	struct stundent s;
	s.name = 'A';
	s.age = 18;
	printStructInfo(s);
	printf("name=%c,age=%d\n", s.name, s.age);
	printf("=================\n");

	//定义局部teacher结构体
	struct teacher {
		char name;
		int age;
	};
	struct teacher t;
	t.name = 'B';
	t.age = 35;
	printf("name=%c,age=%d\n", t.name, t.age);
	printf("=================\n");

	//如下亦可初始化结构体,但是可读性不强
	struct teacher te={'C',55};
	printf("name=%c,age=%d\n", te.name, te.age);
}

void printStructInfo(struct stundent s){
	printf("name=%c,age=%d\n", s.name, s.age);
}

相关文章
|
3月前
|
C++
c++学习笔记07 结构体
C++结构体的详细学习笔记07,涵盖了结构体的定义、使用、数组、指针、嵌套、与函数的交互以及在结构体中使用const的示例和解释。
38 0
|
4月前
|
存储 程序员 编译器
|
6月前
|
编译器 C++
struct 和 typedef struct 区别和用法总结
struct 和 typedef struct 区别和用法总结
98 0
|
6月前
|
存储 C语言
C语言结构体—自定义类型—struct
C语言结构体—自定义类型—struct
47 0
|
6月前
|
存储 Rust 开发者
【Rust】——结构体struct
【Rust】——结构体struct
|
6月前
|
编译器 C语言
C语言中结构体(struct)的详细分解与使用(下)
C语言中结构体(struct)的详细分解与使用(下)
82 0
C语言中结构体(struct)的详细分解与使用(下)
|
6月前
|
存储 算法 编译器
C语言中结构体(struct)的详细分解与使用(中)
C语言中结构体(struct)的详细分解与使用(中)
185 0
|
6月前
|
存储 机器学习/深度学习 编译器
C语言中结构体(struct)的详细分解与使用(上)
C语言中结构体(struct)的详细分解与使用(上)
208 0
|
C语言 C++
10 C++ - struct类型加强(比较C语言)
10 C++ - struct类型加强(比较C语言)
44 0
|
C语言
struct结构体初识
struct结构体初识
55 0