Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a[]={4,7,11,91,1},*pa;
  7. pa = a;
  8.  
  9. cout << *(a+1) << " " << *(a+2) << " ";
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement