what is the c programming concept of multiplying two numbers? eg.1*5=5
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();
}
I hope this helps you.
Pls mark me Brainliest.
Similar questions