[Solved] I cannot compare three numbers rigthly in C [closed]
[ad_1] I think when you write: if (a > b) { max = a; min = b; } else (a < b); { max = b; min = a; } you really want to write: if (a > b) { max = a; min = b; } else { max = b; min = a; … Read more