/* test6:逻辑表达式优先级测试 */ int main() { int a; int b; int c; a = 1; b = 2; c = 3; int result; result = a == 1 && b < c || c != 4; return result; }