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
2
Explanation:
void template(int x, int y, int z)
{
cout<<z<<y<<x;
}
Similar questions