I came across this post on SO a few minutes ago, which was excellent except for one critical typo:
#include "add.c"
int square(int i) {
return i*i;
}
should have been #include "add.h", which, in the context of the post and given the user being targeted, is an important difference.
Instead of just being able to correct it, I was forced to leave a long comment to the OP to correct it.
Sometimes, 1 character in a piece of code is the difference between correct and just plain wrong.
Can high rep users please be allowed to make small edits?