Skip to content

Commit e867652

Browse files
Create multiplication
multiplication of number
1 parent c5c05c2 commit e867652

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: multiplication

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include<stdio.h>
2+
#include<conio.h>
3+
void main()
4+
{
5+
int one, two, multiply;
6+
printf("Enter first number - ");
7+
scanf("%d",&one);
8+
printf("Enter second number - ");
9+
scanf("%d",&two);
10+
multiply = one * two;
11+
printf("The multiplication of numbers %d and %d is %d",one,two,multiply);
12+
getch();
13+
}

0 commit comments

Comments
 (0)