Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
521 views

Worst side effects from chars signedness. (Explanation of signedness effects on chars and casts)

I frequently work with libraries that use char when working with bytes in C++. The alternative is to define a "Byte" as unsigned char but that not the standard they decided to use. I frequently pass ...
6
votes
2answers
126 views

For any finite floating point value, is it guaranteed that x - x == 0?

Floating point values are inexact, which is why we should rarely use strict numerical equality in comparisons. For example, in Java this prints false (as seen on ideone.com): System.out.println(.1 + ...
6
votes
4answers
266 views

Array's index and argc signedness

The C standard (5.1.2.2.1 Program startup) says: The function called at program startup is named main. [...] It shall be defined with a return type of int and with no parameters: int ...
4
votes
1answer
141 views

In C, for example, why is second operand of shift allowed to be signed?

Note: This question is all about the signedness of the second operand of bit shift operators << and >>. Not at all about the first operand. CERT INT34-C, in part: Do not shift a negative number ...
4
votes
6answers
529 views

Can someone explain how the signedness of char is platform specific?

I recently read that the differences between char unsigned char and signed char is platform specific. I can't quite get my head round this? does it mean the the bit sequence can vary from one ...
3
votes
6answers
151 views

When does the signedness of an integer really matter?

Due to the way conversions and operations are defined in C, it seems to rarely matter whether you use a signed or an unsigned variable: uint8_t u; int8_t i; u = -3; i = -3; u *= 2; i *= 2; u ...
3
votes
6answers
639 views

Sign of a floating point number

Is there an easy way to determine the sign of a floating point number? I experimented and came up with this: #include <iostream> int main(int argc, char** argv) { union { float f; char ...
3
votes
5answers
248 views

Is the signedness of char an interface issue?

Suppose I have a function void foo(char *) which, internally, needs to treat its input as a block of NUL-terminated bytes (say, it's a hash function on strings). I could cast the argument to ...
2
votes
1answer
535 views

Difference between C# and java big endian bytes using miscutil

I'm using the miscutil library to communicate between and Java and C# application using a socket. I am trying to figure out the difference between the following code (this is Groovy, but the Java ...
1
vote
4answers
595 views

Unpack signed little-endian in Ruby

So I'm working on some MongoDB protocol stuff. All integers are signed little-endian. Using Ruby's standard Array#pack method, I can convert from an integer to the binary string I want just fine: ...
1
vote
3answers
342 views

Are bytes/words/addresses signed or unsigned in Z80 assembler/machine code?

I am making an emulator for Z80 binaries but I cannot find out whether all the integer data types are signed or unsigned from the manual or from google. So are the numbers from registers A,B...HL,BC ...
0
votes
5answers
182 views

How do I represent negative char values in hexadecimal?

The following code char buffer[BSIZE]; ... if(buffer[0]==0xef) ... Gives the compiler warning "comparison is always false due to limited range of data type". The warning goes away when I change the ...
0
votes
2answers
162 views

string concatenation with strncat leads to error in signedness

update: the point of whether char, signed char, or unsigned was ultimately moot here. it was more appropriate to use memcpy in this situation, since it works indiscriminately on bytes. Couldn't be a ...