<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
I never learned C code but the Intel 8080 was very easy to program<br>
in octal..At one time I could do that without going to the book...<br>
That's when computers were really fun...<br>
Tad N1QAG<br>
<br>
Curt, WE7U wrote:<br>
<blockquote cite="midPine.SUN.4.58.0511090725260.23126@eskimo.com"
 type="cite">
  <pre wrap="">On Tue, 8 Nov 2005, Tad Burnett wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">Then 377 = 255 = FF ???
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Somehow I infer from your question that you already know the answer.
Yes!

Of course the first one would have to be in octal, the 2nd in
decimal, and the third in hexadecimal...  Methinks you're just
trying to confuse everybody.  ;-)  In the above there's no
indication which number system you're using.

Each one of the above would be 1111 1111 in binary.  Put them in
groups of three (starting from the right) for octal, which yields
11 111 111, or 0377 (the leading zero signifies octal in C-code).

Use groups of four for hexadecimal, 1111 1111 or 0xFF (leading "0x"
signifies hexadecimal in C-code).

Some compilers and assemblers accept "0b" as the prefix for binary,
so it'd be 0b11111111.

So the proper way to ask the question above would be:

    Then 0377 = 255 = 0xff?

plus it also equals 0b11111111.  Four ways to represent the exact
same number.  Ain't computers fun?

--
Curt, WE7U.   APRS Client Comparisons: <a class="moz-txt-link-freetext" href="http://www.eskimo.com/~archer">http://www.eskimo.com/~archer</a>
"Lotto:    A tax on people who are bad at math." -- unknown
"Windows:  Microsoft's tax on computer illiterates." -- WE7U
"The world DOES revolve around me:  I picked the coordinate system!"

_______________________________________________
aprssig mailing list
<a class="moz-txt-link-abbreviated" href="mailto:aprssig@lists.tapr.org">aprssig@lists.tapr.org</a>
<a class="moz-txt-link-freetext" href="https://lists.tapr.org/cgi-bin/mailman/listinfo/aprssig">https://lists.tapr.org/cgi-bin/mailman/listinfo/aprssig</a>


  </pre>
</blockquote>
</body>
</html>