1. UBYTE & UWORD
------=_NextPart_000_0007_01BF5D99.2CDB1D00
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
What is UBYTE and UWORD in C ?
Thanks
Ferdinand
------=_NextPart_000_0007_01BF5D99.2CDB1D00
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial>What is UBYTE and UWORD in C ?</FONT></DIV>
<DIV> </DIV>
<DIV>Thanks</DIV>
<DIV> </DIV>
------=_NextPart_000_0007_01BF5D99.2CDB1D00--
2. Re: UBYTE & UWORD
------=_NextPart_000_0053_01C0537C.95B08E80
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
UBTYE is an 8-bit unsigned number. This has a value range of 0 - 255.
UWORD is a 16-bit unsigned number. This has a value range of 0 - 65535.
------
Derek Parnell
Melbourne, Australia
(Vote [1] The Cheshire Cat for Internet Mascot)
----- Original Message -----=20
From: =DC=0F=20
To: EUPHORIA at LISTSERV.MUOHIO.EDU=20
Sent: Thursday, January 13, 2000 4:38 PM
Subject: UBYTE & UWORD
What is UBYTE and UWORD in C ?
Thanks
Ferdinand
------=_NextPart_000_0053_01C0537C.95B08E80
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 5.50.4207.2601" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>UBTYE is an 8-bit unsigned number. This =
has a value=20
range of 0 - 255.</FONT></DIV>
<DIV><FONT size=3D2>UWORD is a 16-bit unsigned number. This has a value =
range of 0=20
- 65535.</FONT></DIV>
<DIV><FONT size=3D2></FONT> </DIV>
<DIV>------<BR>Derek Parnell<BR>Melbourne, Australia<BR>(Vote [1] The =
Cheshire=20
Cat for Internet Mascot)<BR></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV=20
style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black"><B>From:</B>=20
<A title=3Dmwfch at MWEB.CO.ZA =
href=3D"mailto:mwfch at MWEB.CO.ZA">=DC=0F</A> </DIV>
<DIV style=3D"FONT: 10pt arial"><B>To:</B> <A =
title=3DEUPHORIA at LISTSERV.MUOHIO.EDU=20
=
</A>=20
</DIV>
<DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Thursday, January 13, =
2000 4:38=20
PM</DIV>
<DIV style=3D"FONT: 10pt arial"><B>Subject:</B> UBYTE & =
UWORD</DIV>
<DIV><BR></DIV>
<DIV><FONT face=3DArial>What is UBYTE and UWORD in C ?</FONT></DIV>
<DIV> </DIV>
<DIV>Thanks</DIV>
<DIV> </DIV>
------=_NextPart_000_0053_01C0537C.95B08E80--
3. Re: UBYTE & UWORD
On Thu, 13 Jan 2000 07:38:25 +0200, =?iso-8859-1?B?3A8=?=
<mwfch at MWEB.CO.ZA> wrote:
>What is UBYTE and UWORD in C ?
>
>Thanks
>
>Ferdinand
>
UBYTE -- unsigned byte (unsigned char ) 0 to 255 -- one byte
UWORD -- unsigned word (unsigned short integer) 0 to 65,535 -- two bytes
Bernie