I'm new to C++ and I keep getting a message saying something was not declared in the scope. How do I declare stuff in the scope?
This is a bit of code I wrote, when compiling I get the message that system and return0 where not declared in the scope, how do you fix the code? How do I declare stuff in the scope?
#include <iostream>
using namespace std;
int main()
{
cout<<"hello";
system("PAUSE";
return0;
}