Calling a function from another file in the same directory in C
There’s a few different things going on here. First I’ll go over how basic compilation of multiple files works. If you have multiple files, the important thing is the difference between the declaration and definition of a function. The definition is probably what you are used to when defining functions: You write up the contents … Read more