Advance information security concepts

Notes

In languages like C, unsigned integer overflow reliably wraps around; e.g., UINT_MAX + 1 yields zero. C standard says that signed integer overflow leads to undefined behavior.

If operands are of different types while comparing, the compiler will promote all to the largest. If one is char and other is int, compiler will convert char to int.

LINKS

Reverse Engineering Primer

C Typecasting

Typecasting @ Stackoverflow