本文介绍了C编程中的操作员的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include<stdio.h>
main()
{
	int i=2;
	printf("\n%d %d",++i,++i);
	getch();

}



这里我在turboC上工作,我得到输出4,3

请解释原因



我尝试了什么:



但据我所知

++我所以我增加并打印

所以我认为输出必须是3,4


here i do on turboC and i getting output 4,3
please explain why

What I have tried:

but according to me
++i so i incremented and printed
so i think that it must be 3,4 to be output

推荐答案


#include<stdio.h>
main()
{
	int i=2;
	printf("\n%d %d",++i,++i);
	getch();
}



可以转换为:


can translate to:

#include<stdio.h>
main()
{
	int i=2;
	int t1=++i;
	int t2=++i;
	printf("\n%d %d",t1,t2);
	getch();
}



或者:

可以转换为:


or to:
can translate to:

#include<stdio.h>
main()
{
	int i=2;
	int t1=++i;
	int t2=++i;
	printf("\n%d %d",t2,t1);
	getch();
}



这只是编译器的选择。


It is only compiler choice.


这篇关于C编程中的操作员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 10:32