/* Nested if-else - Program to print 3 given numbers in ascending order using nested if-else. Usage of && is not allowed */ #include #include void main() { int a, b, c ; clrscr() ; printf("Enter three numbers: ") ; scanf("%d %d %d", &a, &b, &c) ; printf("Three values in ascending order are: ") ; if(a