[Solved] How come when I try to compile my C program by making a file named for the program it creates an application for it?
It is normal for the compiler to generate an application! What is surprising is the location for the executable, it should have been generated in the parent directory: C:\TDM-GCC-64\> gcc Chess/chess.c Chess/init.c -o chess The explanation is interesting: You are using the Windows operating system, where the filenames are case insensitive. You instructed gcc to … Read more