#include <iostream>

using namespace std;
typedef struct{
	char name[10];
} type_t;

int main() {
	type_t a = {"hihi"};
	
	type_t b;
	b = a;
	
	a.name[0] = 'a';
	
	cout<<a.name<<endl;
	cout<<b.name<<endl;
	

	return 0;
}