Top "Signed" questions

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

How to detect negative number assigned to size_t?

This declaration compiles without warnings in g++ -pedantic -Wall (version 4.6.3): std::size_t foo = -42; Less visibly bogus is declaring …

c++ signed size-t
How do I read the digital signature information from a signed .Net assembly?

I am writing an assembly information application to be used in our software build process and am trying to read …

c# x509certificate digital-signature signed authenticode
In C, why is "signed int" faster than "unsigned int"?

In C, why is signed int faster than unsigned int? True, I know that this has been asked and answered …

c performance optimization unsigned signed