Last active
September 10, 2016 18:49
-
-
Save amirul12/2386e6557231df64a9390330a6863d38 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, mul; | |
printf(“ Type the first number: “); | |
scanf(“%d”,&a); | |
printf(“ Type the second number: “); | |
scanf(“%d”,&b); | |
mul = a*b; | |
printf("Multiplication= %d", mul); | |
getch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment