Created
September 10, 2016 18:52
-
-
Save amirul12/2519b5aa9607161930dd2d8fe0777d9b 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; | |
float div; | |
printf("Type the first number: "); | |
scanf("%d",&a); | |
printf("Type the second number: "); | |
scanf("%d",&b); | |
div = a/b; | |
printf("Division= %f",div); | |
getch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment