#include<iostream.h>
#include<conio.h>
void main ()
{
clrscr ();
int a,b,c;
cout<<“Enter first number “;
cin>>a;
cout<<“Enter second number “;
cin>>b;
c=a*b;
cout<<“Product of the given two numbers is “<<c;
getch ();
}
#include<conio.h>
void main ()
{
clrscr ();
int a,b,c;
cout<<“Enter first number “;
cin>>a;
cout<<“Enter second number “;
cin>>b;
c=a*b;
cout<<“Product of the given two numbers is “<<c;
getch ();
}
No comments:
Post a Comment