Can I do C/C++ programming in NetBeans 5.5? I have installed C/C++ Pack. When I am building the sample project the following message is given..

"'make' is not recognized as an internal or external command,operable program or batch file."

What should I do? The file is as follows:-

Code:
#include <iostream>
using namespace std;
 
int main(int argc, char**argv)
{
   // Prints welcome message...
   cout << "Welcome ...\n";

   // Prints arguments...
   if (argc > 1)
   {
     cout << "\nArguments:\n";
     for (int i = 1; i < argc; i++)
     {
        cout << i << ": " << argv[i] << "\n";
     }
   }
  return 0;
}
Also an underline is shown at the first line.