Computer Science, asked by ashusaini819, 1 year ago

write a basic program to find the product of two number​

Answers

Answered by parakhcmd
0

i can give coding in turbo C++

#include<iostream.h>

#include<conio.h>

void main()

{

float a,b,product;

cout<<"\nENTER ANY TWO NUMBERS:";

cin>>a>>b;

product=a*b;

cout<<"\nPRODUCT OF TWO NUMBERS IS:"<<product;

getch();

}

hope this helps pls mark as brainliest

Similar questions