-Here we try to find the minimum number between two number
Example-
first number is 1
second number is 90
then 1 is minimum
program-
#include < stdio.h>
int main()
{
int a,b;
printf("Enter First number\n");
scanf("%d",&a);
printf("Enter Second number\n");
scanf("%d",&b);
if(a{
printf("%d is smaller",b);
}
}
Enter First number
12
Enter Second number
1
1 is smaller
Enter First number
12
Enter Second number
45
12 is smaller