/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 11:01:07 by narnaud #+# #+# */ /* Updated: 2022/06/14 11:08:21 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include using std::string; using std::cout; using std::endl; int main(void) { string str = "HI THIS IS BRAIN"; string *stringPTR = &str; string &stringREF = str; cout << &str << endl; cout << stringPTR << endl; cout << &stringREF << endl; cout << str << endl; cout << *stringPTR << endl; cout << stringREF << endl; }