Created
September 10, 2016 19:13
-
-
Save amirul12/1fef44c1d4fe0a0baa7fead646dd5493 to your computer and use it in GitHub Desktop.
আয়তক্ষেত্রের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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