Top "Signed" questions

In computing, signedness is a property of data types representing numbers in computer programs.

How to determine a Python variable's type?

How do I see the type of a variable whether it is unsigned 32 bit, signed 16 bit, etc.? How do I …

python types unsigned signed 16-bit
Iteration over std::vector: unsigned vs signed index variable

What is the correct way of iterating over a vector in C++? Consider these two code fragments, this one works …

c++ stl unsigned signed
Signed versus Unsigned Integers

Am I correct to say the difference between a signed and unsigned integer is: Unsigned can hold a larger positive …

language-agnostic integer unsigned signed
C++ convert hex string to signed integer

I want to convert a hex string to a 32 bit signed integer in C++. So, for example, I have the …

c++ integer hex signed
How to convert signed to unsigned integer in python

Let's say I have this number i = -6884376. How do I refer to it as to an unsigned variable? Something …

python integer unsigned signed
What is the difference between “int” and “uint” / “long” and “ulong”?

I know about int and long (32-bit and 64-bit numbers), but what are uint and ulong?

c# types integer unsigned signed
should use size_t or ssize_t

At my code, I do not use int or unsigned int. I only use size_t or ssize_t for …

c++ unsigned signed size-t
What is the minimum value of a 32-bit signed integer?

What is the minimum value of a 32-bit signed integer, happens to be the security "challenge" question in order to …

int 32-bit signed minimum
Is char signed or unsigned by default?

In the book "Complete Reference of C" it is mentioned that char is by default unsigned. But I am trying …

c types char signed
How to Install Driver with a cat file?

I have kernel driver. When installing on 32 bit systems and Windows XP and below, I had no problem and used …

windows 64-bit device-driver signed