Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 19:13
Show Gist options
  • Save amirul12/1fef44c1d4fe0a0baa7fead646dd5493 to your computer and use it in GitHub Desktop.
Save amirul12/1fef44c1d4fe0a0baa7fead646dd5493 to your computer and use it in GitHub Desktop.
আয়তক্ষেত্রের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম
#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();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment