@BroCodez

#include <iostream>

int main() {

    // memory address = a location in memory where data is stored
    // a memory address can accessed with & (address-of operator)

    std::string name = "Bro";
    int age  = 21;
    bool student = true;

    std::cout << &name << '\n';
    std::cout << &age << '\n';
    std::cout << &student << '\n';

    return 0;
}

@mohamedelonache3804

looks like i am the only one who keeps pushing on this awsome tuto tx Bro

@kekix4089

97 процентов людей остались с первого урока. вам очень повезло если вы тут так что надеюсь вам хватит упoрства дойти до конца.

@primordial987

Great tut👍

@FrederikWollert

Good Video.

@masterali2837

how could we change an adress without knowing its location (knowing the the program memory allocation starts and therefor guess its location)

@andrewchen861

thanks!