32비트 프로그램 기준



long long x  = 0;


int* pint = (int*)&x;


*pint = 0x12345678;


unsigned int Address = (unsigned int)pint;


Address +=4;


char* pByte = (char*)Address;


char Result = *pByte;



Result의 결과값을 16진수로 나타낸다면??