feat: added the ex02 of the module 01

This commit is contained in:
Raphael 2024-11-05 13:16:36 +01:00
parent f92e0bec15
commit a6ec8890cf
4 changed files with 216 additions and 0 deletions

41
cpp01/ex02/main.cpp Normal file
View file

@ -0,0 +1,41 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/05 12:58:29 by rparodi #+# #+# */
/* Updated: 2024/11/05 13:15:14 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include <cstdlib>
#include <ostream>
#include <string>
#include <iostream>
#define CLR_RESET "\033[0m"
#define CLR_YELLOW "\033[0;33m"
#define CLR_BLUE "\033[0;34m"
#define CLR_CYAN "\033[0;36m"
#define CLR_GOLD "\033[38;5;220m"
int main(void)
{
std::string str = "HI THIS IS BRAIN";
std::string *strptr = &str;
std::string &strref = str;
std::cout << CLR_BLUE << "Memory Address:" << CLR_RESET << std::endl;
std::cout << CLR_BLUE << "Address of str:\t\t" << CLR_CYAN << &str << CLR_RESET << std::endl;
std::cout << CLR_BLUE << "Address of strptr:\t" << CLR_CYAN << strptr<< CLR_RESET << std::endl;
std::cout << CLR_BLUE << "Address of strref:\t" << CLR_CYAN << &strref<< CLR_RESET << std::endl;
std::cout << std::endl << CLR_YELLOW << "Value:" << CLR_RESET << std::endl;
std::cout << CLR_YELLOW << "Value of str:\t\t" << CLR_GOLD << str << std::endl;
std::cout << CLR_YELLOW << "Value of strptr:\t" << CLR_GOLD << *strptr << std::endl;
std::cout << CLR_YELLOW << "Value of strref:\t" << CLR_GOLD << strref << std::endl;
return 0;
}