#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
int a, b , multiply;
printf("enter the value a:");
scanf("%d",&a);
printf("enter the value b:");
scanf("%d",&b);
(multiply=a*b);
printf("the muliply of given number is:");
printf("%d",multiply);
getch();
return(0);
}
No comments:
Post a Comment