Skip to content

Instantly share code, notes, and snippets.

View amirul12's full-sized avatar
🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)

MD. AMIRUL ISLAM amirul12

🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)
View GitHub Profile
@amirul12
amirul12 / sub.c
Created September 10, 2016 18:38
দুইটি সংখ্যা বিয়োগ করার প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int a, b, sub;
printf(“ Type the first number: “);
scanf(“%d”,&a);
printf(“ Type the second number: “);
scanf(“%d”,&b);
sub = a-b;
@amirul12
amirul12 / multiple.c
Last active September 10, 2016 18:49
কীবোর্ড থেকে দুইটি সংখ্যা ইনপুট দিয়ে গুনফল নির্ণয় করার জন্য সি ভাষায় প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int a, b, mul;
printf(“ Type the first number: “);
scanf(“%d”,&a);
printf(“ Type the second number: “);
scanf(“%d”,&b);
mul = a*b;
@amirul12
amirul12 / div.c
Created September 10, 2016 18:52
কীবোর্ড থেকে দুইটি সংখ্যা ইনপুট দিয়ে ভাগফল নির্ণয় করার জন্য সি ভাষায় প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int a, b;
float div;
printf("Type the first number: ");
scanf("%d",&a);
printf("Type the second number: ");
scanf("%d",&b);
@amirul12
amirul12 / c_to_f.c
Created September 10, 2016 18:57
সেলসিয়াস স্কেলের তাপমাত্রাকে ফারেনহাইট তাপমাত্রায় রুপান্তর সি প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int c, f;
printf("Enter celcious temperature :");
scanf("%d",&c);
f=9*c/5+32;
printf("Ferhenheight temperature:%d”,f);
getch();
@amirul12
amirul12 / f_to_c.c
Created September 10, 2016 19:01
ফারেনহাইট স্কেলের তাপমাত্রাকে সেলসিয়াস তাপমাত্রায় রুপান্তর সি প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int c, f;
printf("Enter Ferenheight temperature :");
scanf("%d",&f);
c=5*(f-32)/9;
printf("Celcious temperature:%d”,c);
getch();
@amirul12
amirul12 / T_area.c
Created September 10, 2016 19:05
ত্রিভুজের ভূমি ও উচ্চতা দেয়া , এর ক্ষেত্রফল নির্ণয় করার প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int b,h;
float area;
printf("Enter the Base:");
scanf("%d",&b);
printf("Enter the Height:");
scanf("%d", &h);
@amirul12
amirul12 / Area of triangle.c
Created September 10, 2016 19:09
ত্রিভুজের তিনটি বাহুর দৈর্ঘ্য যথাক্রমে a, b, c দেওয়া আছে , ত্রিভুজের ক্ষেত্রফল নির্ণয় প্রোগ্রাম লিখ।
#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
int a, b, c;
float s, area;
printf("Enter 3 integer values :");
scanf("%d %d %d", &a,&b,&c);
s = (a + b + c)/2;
@amirul12
amirul12 / area.c
Created September 10, 2016 19:13
আয়তক্ষেত্রের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int a,b,x;
printf("Enter the length & width: ");
scanf("%d %d",&a,&b);
x=a*b;
printf("\nThe area is %d",x);
getch();
@amirul12
amirul12 / Area of circle.c
Last active October 4, 2016 16:42
বৃত্তের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম লিখ
#include<stdio.h>
#include<conio.h>
main ( )
{
int r;
float area;
printf ("Enter integer value for radius:");
scanf ("%d", &r) ;
area = 3.14*r*r; //here the vakue of PI is 3.14
printf("\n Area of circle =%f", area);
@amirul12
amirul12 / largeTwo.c
Created September 23, 2016 17:52
দুটি সংখ্যার মধ্যে বড় সংখ্যা নির্ণয়ের জন্য কন্ডিশন অপারেটর ব্যবহার করে সি প্রোগ্রাম
#include <stdio.h>
#include <conio.h>
main( )
{
int a,b,ans;
printf("Enter a number: ");
scanf("%d",&a);
printf("Enter another number: ");
scanf("%d",&b);
ans=(a>b)?a:b;