the smallest number from three value.


//find the smallest number from three value..........
#include<stdio.h>
void main()
{
int x,y,z;
printf("Please enter the number of x y z with space:");
scanf("%d %d %d",&x ,&y, &z);
if(x<y){
if(x<z){
printf("%d",x);
}
else{
printf("%d",z);
}
}
else
{
if(y<z){
printf("%d",y);
}
else{
printf("%d",z);
}
}
}





//All this C program will prepare on turbo c++ based.