View Single Post
  #122   Report Post  
Posted to alt.home.repair
rbowman rbowman is offline
external usenet poster
 
Posts: 9,074
Default Thermometers: What's the Problem with Accuracy?

On 02/06/2018 11:15 AM, Mark Lloyd wrote:
On 02/06/2018 09:11 AM, rbowman wrote:

[snip]

I often use base 16.

Cindy Hamilton


0723


0x1D3 (although I actually prefer $1D3), or even (at least some times)
%000111010011.


Binary good. We use for debug flags.

#define PRINT_DEBUG 1 5

if (debug & PRINT_DEBUG) {
printf("well that didn't work.\n");
}


The support people really love that...