Guest User

Untitled

a guest
Jan 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. void funkcja(int *tab)
  7. {
  8.  
  9. }
  10.  
  11. int main()
  12. {
  13.   int* wsk;
  14.   int tab[5] = {4, 2, 3, 4, 5};
  15.   wsk = tab;
  16.   funkcja(wsk);
  17.  
  18.   system("PAUSE");
  19.   return EXIT_SUCCESS;
  20. }
Add Comment
Please, Sign In to add comment