Could someone please help me find out what the problem is with this simple program? This souldn't be happening.
Here is the code:
#include "stdafx.h"
using namespace std;
int main ()
{
int numbers[5];
int * p;
p = numbers;
*p = 10;
p++;
*p = 20;
p = &numbers[2];
*p = 30;
p = numbers + 3;
*p = 40;
p = numbers;
*(p+4) = 50;
for(int n=0; n<5; n++)
{
cout<<numbers[n]<<", ";
}
return 0;
}
Here is the comiler error:
test.cpp(23): error C2065: 'cout' : undeclared identifier
I'm using Visual C++ Express Edition.