Search Results

2
votes

C++: Asterisks and Pointers

A good rule of thumb, a lot of people seem to grasp these concepts by: In C++ a lot of semantic meaning is derived by the left-binding of keywords or identifiers. Take for example: …
0
votes

How do I enforce function signatures on a set of function declarations in C?

You cannot really prevent anyone from making a function have any signature. But you can control what you will call. So I assume that is what you want. Have the function that will call the a …
3
votes

Any Tools to Catch Silly Mistakes in C Code?

A few things that have saved me in the past, from the top of my head: Use if (3 == bla) rather than (bla == 3), because if you misspell and type (3 = bla) the comp …