Code:
for(int j = 0; j <=5; j++)
{
	if(Un[j]==Wn[j])
	{
		counter++;
		cout << Un[j] << " ";
	}
}
For some reason the code above doesn't work in my program Any solutions?