File inclusion in c
There are two ways to include a file in c # include ”filename” #include<filename> 1st one is search in current directory and specify list of directory and it also take full qualified file name. 2nd one is search in specify list of director y. But It has a advantage that is it can take multiple file Name at a time that is separated by semicolon ( ; ). Example- #include<file 1; file 2; file 3>