Reputation: 9
I am working with "eclips" for C++ programming but I dont know how to make a .cpp or .c file in this software. In elder soft wares doing it was very simple: New / cpp file and end but in "eclips" is very hard and confused me. Thanks for coperations.
Upvotes: 0
Views: 277
Reputation: 1
In (JUNO) Eclipse you can easily do this.
Right click on Package Explorer --> New Project --> Select C/C++ Project. All class/files derived from that project should be in .cpp file.
Upvotes: 0
Reputation: 541
Try right-clicking on the project file explorer on the right side and selecting New->File. Name your file and add .cpp to the end of it.
Upvotes: 4