考试酷解析——A14_Precedence and Order of Evaluation-3

解析

第七题:

//What is the output of this C code?
#include 
void main()
{
double b = 5 % 3 & 4 + 5 * 6;
printf("%lf", b);
}

运算符的优先级是*=%>+>&,即是求2&34,得到2.0000

 

你可能感兴趣的:(C语言考试酷,c语言)