089. 구조체를 함수 인자로 사용하기

jychan99·2021년 12월 22일
0
#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;

}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보