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.

Debugging

Debugging

From the course: C++ IDE Overview

Start my 1-month free trial

Debugging

- [Instructor] Now we will get to put the debugger through its paces. If you already have a project loaded, close it, and start a new one. Go file, new project, C, C plus plus, C, C plus plus application, next. The project name will be Temperature. The rest of the default value should still be valid. And C plus plus 14, click finish. Source, main CPP. Now we'll go to File Explorer. We'll go to Desktop, Exercise Files, folder 01_04, and we are going to right-click, open with Notepad, and we're just going to click in here, and then do a control-A, so we can select all of this text. Control-C to copy it. We're going to go back to NetBeans. We'll click in our main CPP file, do a control-A, and then a control-V, to copy all of the text that we just copied. This app will tell us how different fahrenheit temperatures feel. The user enters a decimal value and the program will give a text response. Click 'run project' to execute it. We're prompted for a temperature. We will put in zero…

Contents