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(“Largest number is: %d” ,a);

 

else if ( (b>a) && (b>c) )

printf (“Largest number is: %d” ,b);

 

else

        printf(“Largest number is: %d” ,c);

         

getch () ;

}

Comments