473,385 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

What is the difference between signed and unsigned char?

Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */

putchar(a);
putchar(b); /* both print the same character (ex ascii 254)*/

-------------
It seems to me that it doesn't matter whether char is signed or
unsigned, because the output functions just look at the bit pattern and
deal with it as a positive number.
Also, I assigned a negative number to unsigned char, it wraps around
and creates the same bit pattern as assigning the same negative number
to signed char.

So my question is, what really is the difference between unsigned and
signed char?

Also, for other integral types, are the normal types always equal to
the signed types (int = signed int, long = signed long,etc. etc.)... or
is that implementation defined just like for chars?
Any help will be appreciated.

Nov 14 '05 #1
10 15590

tine...@gmail.com wrote:
Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal char is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */


I don't think you can assign a negative initializer to a signed
integer.
Am I right people?

Nov 14 '05 #2
The other way around...
unsigned char does not have a sign extension.
On 1/27/05 4:21 PM, in article
11*********************@c13g2000cwb.googlegroups.c om, "Kobu"
<ko********@gmail.com> wrote:

tine...@gmail.com wrote:
Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal

char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */


I don't think you can assign a negative initializer to a signed
integer.
Am I right people?


Nov 14 '05 #3
<ti*****@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
In this, the value -2, of type int, is converted to unsigned char. This
conversion is specified as being equivalent to repeatedly adding or
subtracting UCHAR_MAX + 1 (where UCHAR_MAX is the maximum value an unsigned
char can have; apparently 255 for your compiler) until the result is between
0 and UCHAR_MAX inclusive. So a is assigned the value 254.
signed char b = -2; /* or = 254 */
Here, -2, again of type int, is converted to signed char. Note however that
the effect of assigning 254 to b (which can hold values between SCHAR_MIN
and SCHAR_MAX inclusive, probably -128 and 127 respectively in your case) is
undefined by the standards.
putchar(a);
putchar(b); /* both print the same character (ex ascii 254)*/
The putchar function takes an int, so for both these calls, the argument is
converted to type int; the calls are equivalent to putchar(254) and
putchar(-2) respectively. The putchar function is specified as converting
its parameter to unsigned char, which uses the rule above. Therefore, with
UCHAR_MAX being 255, the second call is equivalent to the first in terms of
the result.
It seems to me that it doesn't matter whether char is signed or
unsigned, because the output functions just look at the bit pattern and
deal with it as a positive number.
See above.
Also, I assigned a negative number to unsigned char, it wraps around
and creates the same bit pattern as assigning the same negative number
to signed char.
See the rule above. The wrapping around is what the standards specify. The
fact it is the same bit pattern is common, because two's complement
representation for signed numbers is common, but two's complement is not
required by the standards.
So my question is, what really is the difference between unsigned and
signed char?
One can represent unsigned values, and the other signed values (obviously).
As indicated above, conversion of out-of-range values to signed types (such
as signed char) is undefined by the standard. Similarly, the result of
arithmetic that produces out-of-range values for the type is undefined. But
the behaviour in both these cases for unsigned types (such as unsigned char)
*is* defined.
Also, for other integral types, are the normal types always equal to
the signed types (int = signed int, long = signed long,etc. etc.)... or
is that implementation defined just like for chars?


char can represent the same range of values as either signed char or
unsigned char, but all three are distinct types. (Similarly, int and long
may be able to represent the same range of values on a given implementation,
but they too are distinct types.)

int, short, long (and long long in C99) are always capable of representing
negative numbers. I think that int and signed int are the same type, and
similarly for short, long and long long. Hopefully someone else can clarify
this point.

HTH,
Alex
Nov 14 '05 #4
ti*****@gmail.com wrote:

For example if someone does this:

unsigned char a = -2; ...
signed char b = -2; ...

putchar(a);
putchar(b); /* both print the same character (ex ascii 254)*/
Abstractly, putchar() is a wrapper for fputc(), and...

"The fputc function writes the character specified by c
(converted to an unsigned char)..."

So, the calls will both send the same byte value to stdout.
-------------
It seems to me that it doesn't matter whether char is signed
or unsigned, because the output functions just look at the bit
pattern and deal with it as a positive number.
No, the conversion is _NOT_ specified in terms of bit pattern.

On a signed magnitude machine, the 8-bit representation of -2 is...

10000010

Irrespective of the signed char representation, the conversion
will always yield UCHAR_MAX + 1 - 2.
Also, I assigned a negative number to unsigned char, it wraps
around and creates the same bit pattern as assigning the same
negative number to signed char.
It will do so on two's complement machines. However, the standard
doesn't _require_ two's complement integer representation for
negative signed integers.
So my question is, what really is the difference between unsigned
and signed char?

Also, for other integral types, are the normal types always equal
to the signed types (int = signed int, long = signed long,etc.
etc.)...
Yes.
or is that implementation defined just like for chars?


No.

--
Peter

Nov 14 '05 #5
Gregory Dean wrote:
The other way around...
unsigned char does not have a sign extension.
Please don't top post in clc.
ko********@gmail.com> wrote:

I'm just learning to program with C, and I'm wondering what
the difference between signed and unsigned char is.
Apart from the obvious!?
To me there seems to be no difference, and the standard
doesn't even care what a normal char is (because signed and
unsigned have equal behavior).
You haven't read the standard, have you?

The value of an unsigned integer cannot be negative.
For example if someone does this:

unsigned char a = -2; /* or = 254 */
/* or UCHAR_MAX + 1 - 2 */
signed char b = -2; /* or = 254 */

Since -2 is in the range -127..127, the minimum range for
signed char, b will always be assigned the value -2 here
on any conforming implementation.
I don't think you can assign a negative initializer to a signed
integer.

Am I right people?


No.

--
Peter

Nov 14 '05 #6
"Kobu" <ko********@gmail.com> writes:
tine...@gmail.com wrote:
Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal

char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */


I don't think you can assign a negative initializer to a signed
integer.
Am I right people?


No. Both declarations above are legal.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #7
On 27 Jan 2005 12:27:18 -0800, ti*****@gmail.com
<ti*****@gmail.com> wrote:
Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is. To me there seems to
be no difference, and the standard doesn't even care what a normal char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */

putchar(a);
putchar(b); /* both print the same character (ex ascii 254)*/
On your machine. They won't on a 1-s complement machine. Incidentally,
value 254 (0xFE) is not an ASCII character, ASCII only defines 7 bit
characters in the range 0x00 to 0x7FF (0 to 127).
-------------
It seems to me that it doesn't matter whether char is signed or
unsigned, because the output functions just look at the bit pattern and
deal with it as a positive number.
Usually, yes. Not guaranteed, though (some output libraries will fail
if the parameter is negative).
Also, I assigned a negative number to unsigned char, it wraps around
and creates the same bit pattern as assigning the same negative number
to signed char.
Again, on your machine.
So my question is, what really is the difference between unsigned and
signed char?
int main(void)
{
unsigned char a = -2;
signed char b = -2;

if (a == b)
printf("equal\n");

if (a > 0)
printf("a > 0\n");

if (b > 0)
printf("b > 0\n");
return 0;
}

What, if anything, will be output?
Also, for other integral types, are the normal types always equal to
the signed types (int = signed int, long = signed long,etc. etc.)... or
is that implementation defined just like for chars?


They are defined to take the same amount of storage. It is also defined
that a signed value which is positive can be converted to an unsigned
value of the same type and back again with no change in value. However,
an unsigned value which is greater than the maximum positive value which
a signed version can hold cannot be reliably converted into a signed
value, nor is it defined what value an unsigned version of a negative
value has.

Chris C
Nov 14 '05 #8
Chris Croughton wrote:
.... snip on signed/unsigned char ...
They are defined to take the same amount of storage. It is also defined
that a signed value which is positive can be converted to an unsigned
value of the same type and back again with no change in value. However,
an unsigned value which is greater than the maximum positive value which
a signed version can hold cannot be reliably converted into a signed
value, nor is it defined what value an unsigned version of a negative
value has.


That last provision is wrong. There is a specific process for
converting any out-of-range value to an unsigned value. It just
isn't necessarily reversible.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
Nov 14 '05 #9
On 1/27/05 6:01 PM, in article
11**********************@f14g2000cwb.googlegroups. com, "Peter Nilsson"
<ai***@acay.com.au> wrote:
Gregory Dean wrote:
The other way around...
unsigned char does not have a sign extension.

lly pre
Please don't top post in clc.
ko********@gmail.com> wrote:

I'm just learning to program with C, and I'm wondering what
the difference between signed and unsigned char is.
Apart from the obvious!?
To me there seems to be no difference, and the standard
doesn't even care what a normal char is (because signed and
unsigned have equal behavior).
You haven't read the standard, have you?

The value of an unsigned integer cannot be negative.
For example if someone does this:

unsigned char a = -2; /* or = 254 */
/* or UCHAR_MAX + 1 - 2 */
signed char b = -2; /* or = 254 */
Since -2 is in the range -127..127, the minimum range for
signed char, b will always be assigned the value -2 here
on any conforming implementation.
I don't think you can assign a negative initializer to a signed
integer.

Am I right people?


No.


Silly preferences setting in Entourage 2004. Sorry.
-Greg

Nov 14 '05 #10
Chris Croughton wrote:

On 27 Jan 2005 12:27:18 -0800, ti*****@gmail.com
<ti*****@gmail.com> wrote:
Hello fellow C programmers,

I'm just learning to program with C, and I'm wondering what the
difference between signed and unsigned char is.
To me there seems to
be no difference, and the standard doesn't even
care what a normal char
is (because signed and unsigned have equal behavior).

For example if someone does this:

unsigned char a = -2; /* or = 254 */
signed char b = -2; /* or = 254 */

putchar(a);
putchar(b); /* both print the same character (ex ascii 254)*/


On your machine. They won't on a 1-s complement machine.


They won't do what exactly, on a 1-s complement machine?

((unsigned char)-2) may or may not be 254,
but putchar(-2) does the same thing
as putchar((unsigned char)-2), always.

See Alex Fraser's post in this thread for a good explanation.

--
pete
Nov 14 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: MiniDisc_2k2 | last post by:
Okay, here's a question about the standard. What does it say about unsigned/signed mismatches in a comparison statement: char a = 3; unsigned char b = 255; if (a<b) Now what's the real...
3
by: Siemel Naran | last post by:
Hi. Is there a way to convert the type signed int to the type unsigned int, char to unsigned char, signed char to unsigned char, and so on for all the fundamental integer types? Something like ...
9
by: dam_fool_2003 | last post by:
For int data type the default range starts from signed to unsigned. If we don't want negative value we can force an unsigned value. The same goes for long also. But I don't understand why we have...
39
by: August Karlstrom | last post by:
Hello all, If c is a char then is there any difference between c = '\0' and c = 0
11
by: Jason Curl | last post by:
Dear C people, C90 doesn't specify if 'char' is either 'signed char' or 'unsigned char' leaving it to the implementation of the compiler. Has this changed for C99, or is it still the same? ...
4
by: ravinderthakur | last post by:
hi all experts, can anybody explain me the difference between the unsigned char and char in c/c++ langugage. specifically how does this affects the c library fucntion such as strcat,strtok...
35
by: Sunil | last post by:
Hi all, I am using gcc compiler in linux.I compiled a small program int main() { printf("char : %d\n",sizeof(char)); printf("unsigned char : ...
20
by: Hanzac Chen | last post by:
Hi, I don't understand why this could happen? The Code 1 will output `fff9' and the Code 2 will output `1' How could the `mod 8' not have effect? /* Code 1 */ #include <stdio.h> #include...
48
by: Frederick Gotham | last post by:
The "toupper" function takes an int as an argument. That's not too irrational given that a character literal is of type "int" in C. (Although why it isn't of type "char" escapes me... ) The...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.