Search code examples
Conversion of big-endian long in C++?...


c++bit-shiftendiannessinteger-promotion

Read More
Should bit-fields less than int in size be the subject of integral promotion?...


c++visual-studio-2015language-lawyerbit-fieldsinteger-promotion

Read More
Which integral promotions do take place when printing a char?...


cprintfundefined-behaviorvariadic-functionsinteger-promotion

Read More
Are chars automatically promoted in C expressions?...


c++ccharintinteger-promotion

Read More
uint16_t subtraction GCC compilation error...


cgccinteger-promotionuint16

Read More
Data type promotions during arithmetic operations: -1 < (unsinged int) 1 == false...


cunsignedinteger-promotion

Read More
uint8_t operations, when do they overflow?...


c++charoverflowunsigned-charinteger-promotion

Read More
Char and int16 array element both shown as 32bit hex?...


cvariadic-functionsinteger-promotion

Read More
What is going on with bitwise operators and integer promotion?...


c++bitwise-operatorsunsigned-integerinteger-promotionsigned-integer

Read More
If I want to promote a char to an int, should I use static_cast<int>(char variable) or +(char ...


c++static-castunary-operatorinteger-promotion

Read More
Why auto is deduced to int instead of uint16_t...


c++c++11autointeger-promotion

Read More
Is unary minus equivalent to binop minus?...


cunary-operatorinteger-promotionbinary-operators

Read More
Why are integer types promoted during addition in C?...


cinteger-promotion

Read More
How does Objective-C handle bitmasking when arguments are not the same size?...


objective-ctypestype-conversionbitwise-operatorsinteger-promotion

Read More
C++ - Bit-wise not of uchar produces int...


c++bit-manipulationinteger-promotion

Read More
Using unsigned int instead of unsigned short changes behaviour...


cunsignedshortinteger-promotion

Read More
bit representation of unsigned int a = -1...


cinteger-promotion

Read More
When does a type get promoted to an unsigned int?...


c++ctypescastinginteger-promotion

Read More
Are the "usual arithmetic conversions" and the "integer promotions" the same thi...


c++cinteger-promotion

Read More
How do promotion rules work when the signedness on either side of a binary operator differ?...


c++overflowarithmetic-expressionsinteger-promotion

Read More
How is shift operator evaluated in C?...


cbit-shiftinteger-promotion

Read More
Why no promotion when adding ints to List<Double>...


javainteger-promotion

Read More
Compiler warnings conversion...


c++gcccompiler-warningsinteger-promotion

Read More
What happens when a integer overflow occurs in a C expression?...


cinteger-overflowinteger-promotion

Read More
Is the promotion to unsigned done on the result or on each operand?...


ctypesintegertype-conversioninteger-promotion

Read More
Can you please explain this—"the rules involving mixed types of operands do not apply to the sh...


ctype-conversionbitwise-operatorsinteger-promotion

Read More
How possibly can a unary +/- operator cause integral promotion in "-a" or "+a", ...


ctype-conversionexpressioninteger-promotion

Read More
How does the integer overflow work in C?...


coverflowarithmetic-expressionsinteger-promotion

Read More
Why does combining two shifts of a uint8_t produce a different result?...


cbit-shiftinteger-promotion

Read More
What is wrong with this bit-manipulation code from an interview question?...


c++cbit-manipulationinteger-promotion

Read More
BackNext