Top "Unsigned" questions

An unsigned variable is a variable that can only represent non-negative numbers.

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
How to printf "unsigned long" in C?

I can never understand how to print unsigned long datatype in C. Suppose unsigned_foo is an unsigned long, then …

c printf long-integer unsigned format-specifiers
Declaring an unsigned int in Java

Is there a way to declare an unsigned int in Java? Or the question may be framed as this as …

java integer unsigned
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
Can we make unsigned byte in Java

I am trying to convert a signed byte in unsigned. The problem is the data I am receiving is unsigned …

java unsigned
Difference between signed / unsigned char

So I know that the difference between a signed int and unsigned int is that a bit is used to …

c types unsigned
Java equivalent of unsigned long long?

In C++, I enjoyed having access to a 64 bit unsigned integer, via unsigned long long int, or via uint64_t. …

java unsigned primitive unsigned-long-long-int
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