Category: code
Given an array of integers – find out the maximum product of the tree numbers in the array. For example, output: and , output 24. We can easily write …
Something not often mentioned on Technology of Computing is the interesting relationship between coding and gaming. Of course the two fields have a close relationship since all gaming is …
This is a code change that I observe today. It has been in the codebase for a long time, and I find it interesting to talk about it. The …
The RDTSC is the IA-32/IA-64 (or x86/x64) instruction that loads the current value of the processors’ time stamp into EDX:EAX registers. RDTSC is short for “Read Time-Stamp Counter”. It …
The Win32 API IsWow64Process determines if a running process (Process Handler) is on WOW64, which is only set to TRUE, if the process is 32-bit and the OS is …