write a C++ program to find the product of two numbers
Answers
Answered by
9
here is the answer...
Attachments:
Answered by
4
Answer:
#include<constream.h>
void main()
{
clrscr();
int a, b, c;
cout<<"\nEnter first number";
cin>>a;
cout<<"\nEnter second number";
cin>>b;
c=a*b;
cout<<"\n Product="<<c;
getch();
}
Similar questions
Science,
7 months ago
English,
7 months ago
Environmental Sciences,
1 year ago
Chemistry,
1 year ago
Math,
1 year ago