Skip to content

Commit

Permalink
Create Multiplying two numbers.c
Browse files Browse the repository at this point in the history
Multiplying two numbers.c
  • Loading branch information
suprabhatdas authored Oct 3, 2022
1 parent 799904d commit 9b8599f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions C Codes/Multiplying two numbers.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
int main()
{
int number1, number2, multiply;
printf("Enter two integers: ");
scanf("%d %d", &number1, &number2);
multiply = number1 * number2;
printf("%d * %d = %d", number1, number2, multiply);
return 0;
}

0 comments on commit 9b8599f

Please sign in to comment.