Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3. main()
  4. {
  5. int i, b[]={1,2,3,4,5}, *p,d;
  6. p=b;
  7. ++*p;
  8. p+=2;
  9. printf("The value of *p is_______%d",*p);
  10. printf("nThe value of (p - (&p-2)) is______%d",(p - (p-2)));
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement