Search Results

0
votes

Learn C from Open Source code

I do not think that anyone can provide a perfect answer to your question. If you want to learn by working on an open source project, then one of the most important things is that it is a project t …
14
votes

Hidden features of C

gcc has a number of extensions to the C language that I enjoy, which can be found here. Some of …
0
votes

Difference between Enum and Define Statements

Another advantage of an enum over a list of defines is that compilers (gcc at least) can generate a warning when not all values are checked in a switch statement. For example: enum …
2
votes

What is a “callback” in C and how are they implemented?

Here is an example of callbacks in C. Let's say you want to write some code that allows registering callbacks to be called when some event occurs. First define the type of function …