The
obj
folder holds object, or intermediate, files, which are compiled binary files that haven’t been linked yet. They’re essentially fragments that will be combined to produce the final executable. The compiler generates one object file for each source file, and those files are placed into theobj
folder.The
bin
folder holds binary files, which are the actual executable code for your application or library.