Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. main()
  2. {
  3.     char *vetorp[2];
  4.     int a=1,b=2;
  5.     *vetorp=&a;
  6.     *(vetorp+1)=&b;
  7.     printf("%d\n%d\n",*vetorp[0],*vetorp[1]);
  8.     printf("%d",**vetorp);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement