Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int a = 15;
- int main(){
- cout << "wartosc przypisana do zmiennej: " << a << endl;
- cout << "adres w pamieci tej zmiennej: " << (intptr_t)&a << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment