Questions tagged [multi-file-programming]
For questions specifically about programming projects that are created with multiple files, rather than one large single file. For example, instead of putting all your code in `main.c` you could divide it into multiple `.c` and `.h` files.
1 question
22
votes
10
answers
14k
views
What are the benefits of multi-file programming? [closed]
I have been told by another fellow C programmer to write large applications in several different .c and .h files, and then compile them together. They say it will run faster.
Does a multifile ...