Which of the following is the correct usage of condition operators used in C?

Which of the following is the correct usage of condition operators used in C?

A. a>b? c = 20 : c = 21;

B. a>b? c = 20;

C. max = a>b? a>c?a:c:b>c?b:c;

D. return (a>b)?(a:b);

Hướng dẫn

Chọn C là đáp án đúng

Xem lời giải

Xem lời giải

Câu lệnh max = a>b? a>c?a:c:b>c?b:c; max = a>b? (a>c?a:c):(b>c?b:c);

Tags: