8 lines
93 B
C++
8 lines
93 B
C++
struct Person
|
|
{
|
|
char name[128];
|
|
bool sex;
|
|
int age;
|
|
};
|
|
|
|
template<typename T> Table |