March 9, 2012 | Adventure | submitted by
The Lord of the Rings : The Return of the King
namespace LOTR {
struct King { string name, nationality; };
King returnTheKing() {
return King k = { "Aragorn", "Middle-Earth" };
return k;
}
};
struct King { string name, nationality; };
King returnTheKing() {
return King k = { "Aragorn", "Middle-Earth" };
return k;
}
};