Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - This is a simple C question.
This is a simple C question.
Int max (int x, int y) defines a function max with parameters of x and y, and the returned function value type is integer.

z(x & gt; y)? x:y; If x>y, then the value of z is x, otherwise it is y.

Return (z); Returns the final value of z to the function max, that is, the value of the function max is the final value of z.