Guest User

Untitled

a guest
Jan 24th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2. void main()
  3. {
  4. int v=10;
  5. char *p=&v;
  6. int i;
  7. for(i=0;i<10;i++,p++)
  8. {
  9. ++(*p);
  10. printf("%d",v);
  11. }
  12. }
Add Comment
Please, Sign In to add comment