Math, asked by bethelliabhigna, 1 month ago

Write a
program
to multiply two numbers?​

Answers

Answered by nayakdebi
2

Answer:

Program to multiply two numbers in C:

  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. }
Similar questions