rajeevs1992

voidptr

Dec 22nd, 2011
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<iostream>
  3. using namespace std;
  4. main()
  5. {
  6.     int *b,a;
  7.     void *v;
  8.     a=1;
  9.     b=&a;
  10.     v=&a;
  11.     cout<<*b<<*(int *)v;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment