Computer Science, asked by anann, 1 year ago

write a C++ program to find the product of two numbers

Answers

Answered by divergent07
9
here is the answer...
Attachments:
Answered by Soñador
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