Write the output of the following programs?
#include< iostream.h >
void main ( )
{
Unsigned int a = 60;
unsigned in+b = 13;
int c= 0, d=0, e=0, f=0, g=0, h=0;
c=a&b;
d=a|b;
e= a^ b;
f=va;
g= a >> 2;
h=a << 2;
cout << c << '\t\ << d << "\t' << e << '\t' << f << '\t' << g << '\t' << h << endl;
}