/*Multiplication Of
Two Number*/
/* Suchetan Dey */
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter The Number Of A \n");
scanf("%d",&a);
printf("Enter The Number Of B \n");
scanf("%d",&b);
c=a*b;
printf("The Multiplication Is
%d",c);
getch();
}
The Output is :-
No comments:
Post a Comment