InterviewSolution
Saved Bookmarks
| 1. |
8) Question 8. Write a program to find theSmallest of 3 Digits.Ex: - A=45 ,B=47, C=12Output:- C is smallest |
|
Answer» #include void main() { clrscr(); if(a { PRINTF("A is smallest"); } ELSE if( b { printf("B is smallest"); } else { printf("C is smallest"); } getch(); } |
|