Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 18:38
Show Gist options
  • Save amirul12/ce32ebbc4ab597f79553880a06c5c605 to your computer and use it in GitHub Desktop.
Save amirul12/ce32ebbc4ab597f79553880a06c5c605 to your computer and use it in GitHub Desktop.
দুইটি সংখ্যা বিয়োগ করার প্রোগ্রাম
#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;
printf("Subtraction= %d",sub);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment