Search Results

7
votes

unsigned int vs. size_t

The size_t type is the type returned by the sizeof operator. It is an unsigned integer capable of expressing the size in bytes of any memory range supported on the host machine. It is (typically) …
5
votes

Hidden features of C

C compilers implement one of several standards. However, having a standard does not mean that all aspects of the language are defined. Duff's device, for example, is a favorite 'hidden' feature t …
-1
votes

How do you compare structs for equality in C?

If the structs only contain primitives or if you are interested in strict equality then you can do something like this: int my_struct_cmp(const struct my_struct * lhs, const struct my_st …