Discription About Program
<>/center
1.C program to read two numbers and print the multiplication of numbers.
2.In this program,we will learn how to multiply two numbers in C Program by taking user input.
For Example-:
#include<stdio.h>
void main()
{
int a,b,multi;
printf("entered the value");
scanf("%d%d",&a,&b);
multi=a*b;
printf("%d",multi);
}
output
enter the value10 20
200