write a C++ program to find the product of two numbers
Answers
Answered by
1
here is the answer...
Attachments:
![](https://hi-static.z-dn.net/files/d69/acd65958b8d6b9d31517f6da1aeb4bcc.jpg)
Answered by
1
Answer:
#include<constream.h>
void main ();
{
clrscr();
int a, b, p;
cout<<"\nEnter first number:";
cin>>a;
cout<<"\nEnter second number:";
cin>>b;
p=a*b;
cout<<"\nProduct of two numbers="<<p;
getch();
}
Similar questions