结构体的嵌套与返回

结构体的嵌套

#include "stdafx.h"

struct birthday
{
	int year;
	int month;
	int day;
}; 
//为了避免以后其他结构体需要用到 birthday 需要将结构体提出来定义


typedef struct stu
{
	char name[50];
	char sex;
	int age;
	float score;
	//struct birthday
	//{
	//	int year;
	//	int month;
	//	int day;
	//}birth;
	struct birthday birth; //类型申明完之后一定要申明 birth这个变量
}Stu;


struct teacher
{
	char id[100];
	char name[200];
	struct birthday birth;
};


int _tmain(int argc, _TCHAR* argv[])
{
	Stu   ss = { "zhansan", 'x', 23, 89, { 1990, 9, 9 } };

	ss.birth.year = 1999;

	printf("year = %d  month  = %d day = %d\n",
		ss.birth.year, ss.birth.month, ss.birth.day);
	return 0;
}

返回结构体(复数的运算)

#include "stdafx.h"

//结构体做参数和返回值 传指针作参数,不管结构体多大,
//只传4个字节的指针更有效率

struct Complex
{
	float real;
	float image;
};


struct Complex add(struct Complex x, struct Complex y)
{
	struct Complex ret;
	ret.real = x.real + y.real;
	ret.image = x.image + y.image;
	return ret;
}

int _tmain(int argc, _TCHAR* argv[])
{
	struct Complex a = { 3.2, 3.4 };

	struct Complex b = { 1.2, 1.1 };

	struct Complex c = add(a, b);

	printf("c.real=%.2f  c.image=%.2f\n", c.real, c.image);

	return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值