Guest User

Untitled

a guest
Jan 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. int main ()
  2. {
  3.  
  4.     int x,y,*px;
  5.     px=&x;
  6.     *px=2;
  7.     y=*px+1;
  8.     *px+=1;
  9.     *px++;
  10.     printf("x = %d, y=%d",x,y);
  11.  
  12.     system("pause");
  13.         return 0;
  14. }
Add Comment
Please, Sign In to add comment