Computer Science, asked by sweety7436, 5 hours ago

Write a c programe to find of three numbers using if- else nested statement​

Answers

Answered by rawatnikita65
0

const int big1 = (a > b) ? a : b;

const int big2 = (c > d) ? c : d;

int big = (big1 > big2) ? big1 : big2

Similar questions