结构体
Posted 过不去的过去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了结构体相关的知识,希望对你有一定的参考价值。
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
//结构体
struct student{
int age;
int sex;
char name[50];
};
struct A
{
int a;
char b;
long long c;
};
struct B
{
int a;
long long c;
char b;
};
int main(){
struct student xiaoming=
{
15, 0, "xiaoming"
};//第一种定义类型
//第二种定义
struct student xiaoming = {0};
xiaoming.age = 17;
xiaoming.sex = 0;
strcpy(xiaoming.name, "xiaoming");//strcpy字符串的拷贝
scanf("%s", &xiaoming.name);
printf("%s", xiaoming.name);
struct A a;
printf("%d\n", sizeof(a));//数组定义对齐 结果是16
struct B b;
printf("%d\n", sizeof(b));//数组定义对齐 结果是24
system("pause");
return 0;
}
以上是关于结构体的主要内容,如果未能解决你的问题,请参考以下文章
C 语言结构体 ( 结构体类型定义 | 结构体类型别名 | 声明结构体变量的三种方法 | 栈内存中声明结构体变量 | 定义隐式结构体时声明变量 | 定义普通结构体时声明变量 )