/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 16:39:49 by erey-bet #+# #+# */ /* Updated: 2023/04/20 16:47:46 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #include #include int main(void){ std::string brain = "HI THIS IS BRAIN"; std::string *stringPTR = &brain; std::string &stringREF = brain; std::cout << &brain << std::endl; std::cout << stringPTR << std::endl; std::cout << &stringREF << std::endl; std::cout << brain << std::endl; std::cout << *stringPTR << std::endl; std::cout << stringREF << std::endl; return (0); }