Computer Science, asked by anann, 1 year ago

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

Answers

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