Top "Uint16" questions

error: 'uint16_t' undeclared?

I have the code #include <emmintrin.h> #include <stdio.h> void print128_num(__m128i var) { …

c gcc undeclared-identifier uint16
How do I printf() a uint16_t?

I need to use printf() to print a uint16_t. This SO answer (How to print uint32_t and uint16_…

c format-specifiers uint16
Unpack binary data with python

I would like to unpack an array of binary data to uint16 data with Python. Internet is full of examples …

python arrays struct unpack uint16
How can I convert uint8_t and uint16_t into floats in c++?

I created uint8_t and uint16_t variable types and read values into them from some registers. But, I'm unsure …

c++ floating-point uint8t uint16
Converting 16-bit integer to 8-bit integer?

I'm implementing C code to copy a 16-bit sign and magnitude integer to an 8-bit sign and magnitude integer. Is …

bit-shift stdint cstdint uint16 uint8t
Swift: Convert Int16 to Int32 (or NSInteger)

I'm really stuck! I'm not an expert at ObjC, and now I am trying to use Swift. I thought it …

swift int int32 uint16
Convert usigned integer( uint16_t) to string. Standard itoa base 10 is giving negative values

I need to convert uint16_t value to a string. I want the string to be a decimal respresentation of …

c string unsigned-integer itoa uint16