Computer Science, asked by sehaj1415, 18 days ago

Write a program to multiply two numbers by using user input in c++​

Answers

Answered by abhishekkumar9050
1

Answer:

\huge{\textbf{\textsf{{\color{navy}{An}}{\purple{sw}}{\pink{er}} {\color{pink}{:}}}}}

Explanation:

Write A C++ Program To Multiply Two Numbers By Using Function Showing Return Expression

{

cin>>x>>y;

z = mul (x, y);

getch( );

}

int mul (int p, int q)

{

return (p * q);

Similar questions