PROGRAM :-
#include<stdio.h>
void main()
{
int a,b,mul;
printf("Enter the value of a: ");
scanf("%d",&a);
printf("\nEnter the value of b: ");
scanf("%d",&b);
mul=a*b;
printf("\nThe Multiplication of a & b is :%d",mul);
}
OUTPUT :-
Enter the value of a: 10
Enter the value of b: 5
The Multiplication of a & b is : 50
Easy way to learn and understand
ReplyDelete