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,...
Part 1 of 5:

Downloading the Components

  1. How to Run C/C++ Program in Netbeans on Windows Picture 1How to Run C/C++ Program in Netbeans on Windows Picture 1
    Open each of the following links in separate tabs.
    1. Netbeans
    2. Compiler and Debugger
  2. How to Run C/C++ Program in Netbeans on Windows Picture 2How to Run C/C++ Program in Netbeans on Windows Picture 2
    Download Netbeans
    1. Select the Graphic on the right
      How to Run C/C++ Program in Netbeans on Windows Picture 3How to Run C/C++ Program in Netbeans on Windows Picture 3
    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.
      How to Run C/C++ Program in Netbeans on Windows Picture 4How to Run C/C++ Program in Netbeans on Windows Picture 4
  3. Download Compiler and Debugger
    1. Select the Correct File for your System and Save it to your desktop
      How to Run C/C++ Program in Netbeans on Windows Picture 5How to Run C/C++ Program in Netbeans on Windows Picture 5
Part 2 of 5:

Installing Cygwin Compiler and Debugger

  1. How to Run C/C++ Program in Netbeans on Windows Picture 6How to Run C/C++ Program in Netbeans on Windows Picture 6
    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. How to Run C/C++ Program in Netbeans on Windows Picture 7How to Run C/C++ Program in Netbeans on Windows Picture 7
    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
      How to Run C/C++ Program in Netbeans on Windows Picture 8How to Run C/C++ Program in Netbeans on Windows Picture 8
  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
      How to Run C/C++ Program in Netbeans on Windows Picture 9How to Run C/C++ Program in Netbeans on Windows Picture 9
    2. Find the files called gcc-core, gcc-g++, gdb: GNU Debugger, and 'make', and click the 'Skip' button to the left ONCE.
      How to Run C/C++ Program in Netbeans on Windows Picture 10How to Run C/C++ Program in Netbeans on Windows Picture 10
      How to Run C/C++ Program in Netbeans on Windows Picture 11How to Run C/C++ Program in Netbeans on Windows Picture 11
    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
      How to Run C/C++ Program in Netbeans on Windows Picture 12How to Run C/C++ Program in Netbeans on Windows Picture 12
    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"
      How to Run C/C++ Program in Netbeans on Windows Picture 13How to Run C/C++ Program in Netbeans on Windows Picture 13
Part 3 of 5:

Installing Netbeans

  1. How to Run C/C++ Program in Netbeans on Windows Picture 14How to Run C/C++ Program in Netbeans on Windows Picture 14
    Open the Netbeans Installer
    1. Allow program to run, if asked for permission, and wait for installer to configure
  2. How to Run C/C++ Program in Netbeans on Windows Picture 15How to Run C/C++ Program in Netbeans on Windows Picture 15
    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. How to Run C/C++ Program in Netbeans on Windows Picture 16How to Run C/C++ Program in Netbeans on Windows Picture 16
    Open Netbeans
  2. How to Run C/C++ Program in Netbeans on Windows Picture 17How to Run C/C++ Program in Netbeans on Windows Picture 17
    Click the "My Netbeans" tab
  3. How to Run C/C++ Program in Netbeans on Windows Picture 18How to Run C/C++ Program in Netbeans on Windows Picture 18
    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. How to Run C/C++ Program in Netbeans on Windows Picture 19How to Run C/C++ Program in Netbeans on Windows Picture 19
    Click Next in the new window
    1. Accept the User Agreement and Click Install
  5. How to Run C/C++ Program in Netbeans on Windows Picture 20How to Run C/C++ Program in Netbeans on Windows Picture 20
    Exit the Plugin Window
  6. How to Run C/C++ Program in Netbeans on Windows Picture 21How to Run C/C++ Program in Netbeans on Windows Picture 21
    Click File in the top left corner
  7. How to Run C/C++ Program in Netbeans on Windows Picture 22How to Run C/C++ Program in Netbeans on Windows Picture 22
    Click New Project
  8. How to Run C/C++ Program in Netbeans on Windows Picture 23How to Run C/C++ Program in Netbeans on Windows Picture 23
    Select C/C++ in the new window
    1. Select C++ Application on the right side
      How to Run C/C++ Program in Netbeans on Windows Picture 24How to Run C/C++ Program in Netbeans on Windows Picture 24
    2. Select Next
  9. How to Run C/C++ Program in Netbeans on Windows Picture 25How to Run C/C++ Program in Netbeans on Windows Picture 25
    Name the Project whatever you'd like, and make sure that the tool collection field has Cygwin in it
    1. Click Finish
  10. How to Run C/C++ Program in Netbeans on Windows Picture 26How to Run C/C++ Program in Netbeans on Windows Picture 26
    Double-Click the Project on the left-side of the screen
    1. Click the '+' next to Source Files
  11. How to Run C/C++ Program in Netbeans on Windows Picture 27How to Run C/C++ Program in Netbeans on Windows Picture 27
    Double-Click main.cpp
  12. How to Run C/C++ Program in Netbeans on Windows Picture 28How to Run C/C++ Program in Netbeans on Windows Picture 28
    Insert the phrase (No quotes) "#include " underneath the other include phrase
  13. How to Run C/C++ Program in Netbeans on Windows Picture 29How to Run C/C++ Program in Netbeans on Windows Picture 29
    Insert any code inside the curly brackets of the main function
    1. For example insert (no quotes) "cout << "Hello World" << endl;"
  14. How to Run C/C++ Program in Netbeans on Windows Picture 30How to Run C/C++ Program in Netbeans on Windows Picture 30
    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"
      How to Run C/C++ Program in Netbeans on Windows Picture 31How to Run C/C++ Program in Netbeans on Windows Picture 31
  15. How to Run C/C++ Program in Netbeans on Windows Picture 32How to Run C/C++ Program in Netbeans on Windows Picture 32
    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
      How to Run C/C++ Program in Netbeans on Windows Picture 33How to Run C/C++ Program in Netbeans on Windows Picture 33
Part 5 of 5:

Troubleshooting

  1. How to Run C/C++ Program in Netbeans on Windows Picture 34How to Run C/C++ Program in Netbeans on Windows Picture 34
    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
3.7 ★ | 10 Vote