一道笔试题

  看一道题目:

#include<stdio.h>

struct node
{
	__int64 a;
	__int64 b;
	__int64 c;
}Node;

void test()
{
	struct node node;
	node.a = 1;
	node.b = 2;
	node.c = 3;
	printf("%d %d %d\n", node.a, node.b, node.c);
}

int main()
{
	test();
	return 0;
}

输出的结果是什么?

答案: 1 0 2

为什么答案不是1 2 3呢?

继续测试一下...

对test函数作修改,如下:

void test()
{
	struct node node;
	node.a = 1;
	node.b = 2;
	node.c = 3;
	printf("%d %d %d\n", node.a, node.b, node.c);
	printf("%d %d %d\n", node.a, node.c, node.b);
	printf("%d %d %d\n", node.b, node.a, node.c);
	printf("%d %d %d\n", node.b, node.c, node.a);
	printf("%d %d %d\n", node.c, node.a, node.b);
	printf("%d %d %d\n", node.c, node.b, node.a);
}
再运行,输出结果为:

1 0 2
1 0 3
2 0 1
2 0 3
3 0 1
3 0 2
Press any key to continue

发现规律了吧! 也就是说输出第一个%d时,能够得到该值(前提是小端法,大端法输出为0),第二个%d时输出的是第一个%d变量的下面的四个字节的数据,为0(这与小端法的存储有关),接下来第三个%d输出的就是第二个变量的值.腾讯2013年的笔试题,很可惜,我写错了.可是这是为什么???who can tell me why?

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值