Given the following template function: templatevoid Foo(T& a…
Given the following template function: templatevoid Foo(T& a, T& b, T c){ T t = a; a = b; b = t; t = a; c = t; a = c;} What would the output be for the following code? int a = 7;int b = 4;int c = 1;Foo(a, b, c);cout