Write a
program
to multiply two numbers?
Answers
Answered by
2
Answer:
Program to multiply two numbers in C:
- #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();
- }
Similar questions