The signedness tag has no wiki summary.
8
votes
1answer
133 views
Should I use “unsigned” every time i know I'm processing unsigned values?
Often values are known to be positive. For example TCP/UDP sequence number is always positive value. Both int and unsigned int are big enough to store even the biggest sequence number so I can use any ...
2
votes
1answer
159 views
How do I #define an unsigned char* string?
I have following define in my code
#define PRODUCTNAME "SomeName"
and I want to send it with a function com_reply(unsigned char* msg, uint16_t lenght).
Now I get a warning that my argument ...
0
votes
1answer
101 views
How to send a Java integer in four bytes to another application?
public void routeMessage(byte[] data, int mode) {
logger.debug(mode);
logger.debug(Integer.toBinaryString(mode));
byte[] message = new byte[8];
ByteBuffer byteBuffer = ...
3
votes
6answers
234 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 ...
0
votes
5answers
795 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 ...
4
votes
1answer
247 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 ...
1
vote
4answers
2k 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:
...
4
votes
7answers
5k 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
352 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 ...
1
vote
3answers
572 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 ...
6
votes
2answers
209 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 + ...
0
votes
2answers
216 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 ...
2
votes
1answer
956 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 ...
6
votes
4answers
452 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 deļ¬ned with a
return type of int and with no
parameters:
int ...
12
votes
8answers
673 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
6answers
854 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 ...