Skip to content

Instantly share code, notes, and snippets.

@rajeevs1992
Created January 22, 2013 14:41
Show Gist options
  • Save rajeevs1992/4595126 to your computer and use it in GitHub Desktop.
Save rajeevs1992/4595126 to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include<iostream>
using namespace std;
main()
{
int *b,a;
void *v;
a=1;
b=&a;
v=&a;
cout<<*b<<*(int *)v;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment