Should C Compiler (I use Visual Studio) generate .obj files from .h files? I think it shouldn’t, but my compiler creates them. How do I fix it? There is no .c files except Main.c

>Solution :
The C compiler will generate an object file for each source specified on the command line with the -c option. Do not specify header files on the command line.
