Computer Science, asked by aditidubey434, 1 month ago

Write a program to accept three numbers and find the product of those numbers, using While… Wend statement.
ANSWER SHOULD BE CORRECT OR REPORTED :)

Answers

Answered by anishkumar606
0

Answer:

int product( int x, int y, int z){

return (x*y*z);

}

Explanation:

You can call this product function in main() by passing three numbers.

Similar questions