Back To C Flow of Control Index
//program to input three numbers and find smallest of three numbers using if-else statement #include
#include
void main() { int a,b,c,min; clrscr(); printf("enter value for a"); scanf("%d",&a); printf("enter value for b"); scanf("%d",&b); printf("enter value for c"); scanf("%d",&c); min=a; if(b