#include using namespace std; int main() { char MyChar = 'a'; int *MyIntPtr; MyIntPtr = (int*)&MyChar; cout<<*MyIntPtr<<"\n"; }