Clear, practical technology insights About · Contact

How to Run C/C++ Program in Netbeans on Windows

This tutorial will take you through the process of running a C/C++ program with the Netbeans IDE (Integrated Development Environment) using screenshots as tools for understanding and clarity. This article is written for use with Windows,...

Author: Samuel Daniel4 minutes read
Table of Contents
Part 1 of 5:

Downloading the Components

  1. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Open each of the following links in separate tabs.
    1. Netbeans
    2. Compiler and Debugger
  2. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Download Netbeans
    1. Select the Graphic on the right
      images 1 of How to Run C/C++ Program in Netbeans on Windows
    2. Accept the user agreement, and then select the correct software from the list. Choose either the file ending in i586 for a 32-bit system or the file ending in x64 for a 64-bit system. Save to your Desktop.
      images 1 of How to Run C/C++ Program in Netbeans on Windows
  3. Download Compiler and Debugger
    1. Select the Correct File for your System and Save it to your desktop
      images 1 of How to Run C/C++ Program in Netbeans on Windows
Part 2 of 5:

Installing Cygwin Compiler and Debugger

  1. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Create a Folder on the Desktop and name it Cygwin
  2. Open the Cygwin Installer
    1. Click the "Next" button on the window that comes up
  3. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click Install from Internet, Click Next, then Click Next on the Second window
    1. Make sure on the Third Window that the path is setup to the desktop folder
      images 1 of How to Run C/C++ Program in Netbeans on Windows
  4. Select a Download Site and click Next
    1. Really does not matter what site is chosen, however download speed may be affected
  5. Install Compiler and Debugger
    1. On the Window that pops-up select the '+' next to Devel
      images 1 of How to Run C/C++ Program in Netbeans on Windows
    2. Find the files called gcc-core, gcc-g++, gdb: GNU Debugger, and 'make', and click the 'Skip' button to the left ONCE.
      images 1 of How to Run C/C++ Program in Netbeans on Windows
      images 1 of How to Run C/C++ Program in Netbeans on Windows
    3. Click Next
    4. It will install the parts and then ask if you want shortcuts, you do not need these
  6. Create the Cygwin Path
    1. Open your control panel and select "System and Security", then select "System"
    2. Click Advanced System Settings
    3. Near the bottom of the new window there will be a button called "Environmental Variables", select it
      images 1 of How to Run C/C++ Program in Netbeans on Windows
    4. In the window that pops up scroll down to Path, select it and click Edit
    5. At the end of the highlighted text (DON'T DELETE IT) add, with no spaces at all, ";cygwin-directorybin"
      images 1 of How to Run C/C++ Program in Netbeans on Windows
Part 3 of 5:

Installing Netbeans

  1. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Open the Netbeans Installer
    1. Allow program to run, if asked for permission, and wait for installer to configure
  2. images 1 of How to Run C/C++ Program in Netbeans on Windows
    When the installer Opens
    1. Click Next
    2. Agree to the user agreement and select Next
    3. Allow the installer to save and install the files on the next two windows to the default locations
    4. Click Install
    5. You can choose whether to send usage data or not
Part 4 of 5:

Running the Program

  1. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Open Netbeans
  2. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click the "My Netbeans" tab
  3. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click Install Plugins
    1. In the search bar type C/C++
    2. Select the result that has the same name and click it
    3. Click Install
  4. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click Next in the new window
    1. Accept the User Agreement and Click Install
  5. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Exit the Plugin Window
  6. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click File in the top left corner
  7. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click New Project
  8. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Select C/C++ in the new window
    1. Select C++ Application on the right side
      images 1 of How to Run C/C++ Program in Netbeans on Windows
    2. Select Next
  9. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Name the Project whatever you'd like, and make sure that the tool collection field has Cygwin in it
    1. Click Finish
  10. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Double-Click the Project on the left-side of the screen
    1. Click the '+' next to Source Files
  11. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Double-Click main.cpp
  12. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Insert the phrase (No quotes) "#include " underneath the other include phrase
  13. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Insert any code inside the curly brackets of the main function
    1. For example insert (no quotes) "cout << "Hello World" << endl;"
  14. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Click the hammer icon at the top to build the solution
    1. If done correctly at the bottom in green, a message will appear that reads "Build Successful"
      images 1 of How to Run C/C++ Program in Netbeans on Windows
  15. images 1 of How to Run C/C++ Program in Netbeans on Windows
    Run the code by clicking the play button
    1. At the bottom your output should be there, followed by a message that reads "Run Successful" with total runtime of your program
      images 1 of How to Run C/C++ Program in Netbeans on Windows
Part 5 of 5:

Troubleshooting

  1. images 1 of How to Run C/C++ Program in Netbeans on Windows
    1. Be sure to install the Cygwin compiler and debugger first. It allows the IDE to auto-find it in your system
    2. If Cygwin does not appear in the tool collection field, be sure that its path is added to the Environment Variables
    3. If the project does not build or run correctly, be sure to look carefully at the final screenshot and make sure that all parts in the text editor look the same

Was this article helpful?

Your feedback helps us improve.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.