diff options
Diffstat (limited to 'cpp01/ex04/ex04.cpp')
| -rw-r--r-- | cpp01/ex04/ex04.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cpp01/ex04/ex04.cpp b/cpp01/ex04/ex04.cpp new file mode 100644 index 0000000..865cb1a --- /dev/null +++ b/cpp01/ex04/ex04.cpp @@ -0,0 +1,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; +} |
