Computer Science, asked by zz614708, 22 days ago

Write a function template that accepts three parameters and displays them in reverse order. Write a function template that accepts three parameters and displays them in reverse order.

Answers

Answered by meshramankit42
2

Explanation:

void template(int x, int y, int z)

{

cout<<z<<y<<x;

}

Similar questions