Skip to content

Instantly share code, notes, and snippets.

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