MeehoweCK

Untitled

Apr 1st, 2020
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int* liczba = new int;
  8.     cout << liczba << endl;
  9.     *liczba = 5;
  10.     cout << *liczba << endl;
  11.     delete liczba;              // zwolnienie pamięci - BARDZO WAŻNE
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment