From the course: C++ IDE Overview

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Project layout

Project layout

From the course: C++ IDE Overview

Start my 1-month free trial

Project layout

- [Narrator] Let's learn a bit about CLion's project and file structure. If you have a project open, go file, close project, once again we're going to create a new project, make sure it's C++ executable, we're going to name this one averages, and click create. We're going to open up the file explorer, go to our exercise files, go to the file for 03 05, go to the begin, and right here we're going to do a control A to select both the files, and a control C to copy them, on the mac, that is a command A and a command C. We can shrink this back down. We're going to right-click on main cpp, we're going to select show in explorer, and right here we're going to do a control V to copy the files, we're going to go ahead and select replace the file in destination. On the mac, that would be a command V. And we can close this window up now. This project reads a text file with all the test scores and calculates the average score. It needs to be able to open the file test-scores.txt which is in the…

Contents