Guest User

Untitled

a guest
Jun 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void main()
  2. {
  3. int arr[] = {10,20,30,40,50};
  4. int *ptr = arr;
  5. printf(" %d %d ",*ptr++,*ptr); //" 10 10 " is printed.
  6. }
Add Comment
Please, Sign In to add comment