#include <iostream>
#include <string>
using namespace std;
struct Princess
{
string name;
string father;
string birthday;
}jungso;
void Print1(Princess* who) //Call by address일때는 ->로 참조한다.
{
cout << "jungso.name = " << who->name << endl;
cout << "jungso.father = " << who->father << endl;
cout << "jungso.birthday = " << who->birthday << endl;
}
void Print2(Princess& who) // call by reference일때는 . 로 참조한다.
{
cout << "jungso.name = " << who.name << endl;
cout << "jungso.father = " << who.father << endl;
cout << "jungso.birthday = " << who.birthday << endl;
}
int main()
{
jungso.name = "정소공주";
jungso.father = "조선 태종";
jungso.birthday = "1412년";
Print1(&jungso);
Print2(jungso);
return 0;
}