Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 18:52
Show Gist options
  • Save amirul12/2519b5aa9607161930dd2d8fe0777d9b to your computer and use it in GitHub Desktop.
Save amirul12/2519b5aa9607161930dd2d8fe0777d9b to your computer and use it in GitHub Desktop.
কীবোর্ড থেকে দুইটি সংখ্যা ইনপুট দিয়ে ভাগফল নির্ণয় করার জন্য সি ভাষায় প্রোগ্রাম
#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