Skip to content

Instantly share code, notes, and snippets.

@derofim
Created August 14, 2015 07:26
Show Gist options
  • Save derofim/c823354746d3d381b501 to your computer and use it in GitHub Desktop.
Save derofim/c823354746d3d381b501 to your computer and use it in GitHub Desktop.
#include <iostream>
int main()
{
using namespace std;
char x = 'a';
int y = 7;
void* data = &x;
char* ptr1 = ( char* ) data;
data = &y;
int* ptr2 = ( int* ) data;
cout << *ptr1 << endl; // Вывод: a
cout << *ptr2 << endl; // Вывод: 7
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment