C Program to find minimum between two numbers using if-else statement

Here is the C program in which we have to find the minimum number between two numbers using if-else statement. #include<stdio.h> #include<conio.h> void main() {         int a,b;        ...