aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex04/ex04.cpp
blob: 865cb1a41953f00d2f6bb708c92e0a98393ef3f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <string>

int main()
{
	std::string s = "HI THIS IS BRAIN";
	std::string &ref_s = s;
	std::string *ptr_s = &s;

	std::cout << *ptr_s << std::endl;
	std::cout << ref_s << std::endl;
	return 0;
}