i was making a project and under the project i wanted to have multiple files. the project consists of several different mathematical calculations. is there any way of me doing the multiple files? or should i just do multiple projects?
Well basically 1 project = 1 program. And you can only have 1 main() per program (otherwise how is the computer supposed to know which main you want to use?).
You can have multiple calculations in the same program, but then you have to have some kind of interface for where the user selects which calculation they want to use.
If you want each calculation to have its own program, then they must all be their own project.