int main()
{
char a[] = "HELLO";
char b[] = "HELLO";
if (b == a)
cout << "The same\n";
else
cout << "Different\n";
}
int main()
{
int i;
int my_card[5];
for (i=0; i<5; i++) // Get_Five
cin >> my_card[i];
for (i=0; i<5; i++)
{
print_card(my_card[i]);
cout << (i==4 ? '\n' : '\t');
}
for (i=0; i<5; i++)
{
print_card(my_card[i], "Chinese");
cout << (i==4 ? '\n' : '\t');
}
return 0;
}