Well, I used Dev-C ++ for some time to learn the [C ++] language, and some things worked incorrectly, like global and local variables. Then I decided to download Microsoft Visual C ++ to see how it compares, and it was absolutely great; especially with its aesthetics. However, one thing that bothered me is that since I need to make a lot of small source files to check what I found out, I have to create a large project file each time that takes ~ 18 mb of space, I tried to just create the source the file is in C ++, but it never works, since the compilation and launch buttons are not selected without the project file, and pressing the f5 key also does not produce results. But with Dev-C ++, I could just open it, control + n and quickly write the program, compile and display it, not needed for the project file. So, is there a way to compile single source files in Microsoft Visual C ++ without requiring the project file to include it in?
source share