fojtasd

Untitled

Dec 5th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. int *dynPol = new int [3] {12,18,19};
  2.  
  3.     cout << dynPol[0] << endl;
  4.     dynPol+=1;
  5.     cout << dynPol[0] << endl;
  6.  
  7. vysledek (vypise)
  8.  
  9. 12
  10. 18
Advertisement
Add Comment
Please, Sign In to add comment