Using hexadecimal numbers
•
WinDbg disassembly:
•
mov [a], 12
•
mov [a],
0x
C
•
•
In C language:
•
a = 12;
•
a =
0x
C;
•