return *p>*a?1:1;
时间: 2023-10-21 07:33:17 浏览: 68
回归结果1
This is a ternary operator expression in C++ which can be interpreted as:
If the value pointed to by p is greater than the value of a, then return 1, else return 1.
Note: The expression itself does not perform any action, it simply returns a value based on the condition.
阅读全文