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