Write an algorithm to multiply the two numbers
Answers
Answered by
3
Here's algorithm to multiply two numbers
Code:
#include<stdio.h>
#include<conio.h>
void main(){
int one, two, multiply;
printf("Enter first number - ");
scanf("%d",&one);
printf("Enter second number - ");
scanf("%d",&two);
multiply = one * two;
printf("The multiplication of numbers %d and %d is %d",one,two,multiply);
getch();
}
//End of the program.
Output:
Enter first number – 20
Enter second number – 4
The multiplication of numbers 20 and 4 is 80
Answered by
0
Answer:
Explanation:
Write algorithm in maltipal of two number in steps
Similar questions