

InterviewSolution
Saved Bookmarks
1. |
Write a c programe to find of three numbers using if- else nested statement |
Answer» CONST int big1 = (a > b) ? a : b; const int big2 = (C > d) ? c : d; int big = (big1 > big2) ? big1 : big2
|
|