Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main() {
  4. int i, n;
  5. int *pole = NULL;
  6. cout << "zadaj pocet prvkov pola :";
  7. cin >> n;
  8. pole = new int[n];
  9. cout << "adresa pola je" << pole << endl;
  10. for (
  11.  
  12. system"pause"
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement