Search Results

6
votes
6answers
2k views

signed to unsigned conversion in C - is it always safe?

Suppose I have the following C code: unsigned int u = 1234; int i = -5678; unsigned int result = u + i; What implicit conversions are going on here, and is this c …
8
votes
2answers
324 views

What is the point of saying “#define FOO FOO” in C?

I came across some C code where the author uses the following idiom all over the place: typedef __int32 FOO_INT32; #define FOO_INT32 FOO_INT32 What is the point of …
0
votes

C: Implicit casting and interger overflowing in the evaluation of expressions

See section 2.7, Type Conversions in the K&R book …