My first post
This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.
#include<stdio.h>
#include<conio.h>
Main ()
{
Int a, b, c;
printf (“Enter numbers :”);
scanf (“%d %d %d”, &a, &b, &c);
if ((a<b) && (a<c)
printf(“Smallest number is: %d” ,a);
else if ( (b<a) && (b<c) )
printf (“Smallest number is: %d” ,b);
else
printf(“Smallest number is: %d” ,c);
getch () ;
}
Comments
Post a Comment