Created
September 10, 2016 18:38
-
-
Save amirul12/ce32ebbc4ab597f79553880a06c5c605 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, 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